Documentation Overhaul

This commit is contained in:
Patrick_Pluto 2024-08-23 11:45:35 +02:00
parent c9def98b89
commit 86897a8bba
2 changed files with 5 additions and 8 deletions

View file

@ -10,6 +10,9 @@ all:
mkdir -p bin/
$(CXX) $(SRC) -o bin/$(EXEC)
windows:
mkdir -p bin/
$(CXX) $(SRC) -o bin/$(EXEC).exe
clean:
rm bin/$(EXEC)
rmdir bin
rm -r bin/

View file

@ -1,9 +1,3 @@
# PlutoISA
This is an emulator for the custom made PlutoISA.
To use, you need use a Unix-like environment with gcc and make.
To compile, simply run "make", which will then create a bin subfolder with the executable.
To remove, run "make clean" to remove the the executable and the bin folder.