Documentation Overhaul

This commit is contained in:
Patrick_Pluto 2024-08-23 11:46:32 +02:00
parent a3d5201259
commit 580adceb91
2 changed files with 5 additions and 8 deletions

View file

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

View file

@ -1,9 +1,3 @@
# PlutoISA # PlutoISA
This is an assembler for the custom made PlutoISA. This is an assembler 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.