diff --git a/CHANGELOG.org b/CHANGELOG.org index 750b865..d05d6cc 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -24,6 +24,7 @@ Expanded stage0 web IDE to include the PC and instruction counter Fixed behavior of R@ thanks to reepca Updated changed checksums for stage2 FORTH Corrected behavior when using the web IDE and attempting to set registers that don't exist +Fixed regression in hex.c caused by refactoring ** Removed diff --git a/Linux Bootstrap/hex.c b/Linux Bootstrap/hex.c index 81097df..0315809 100644 --- a/Linux Bootstrap/hex.c +++ b/Linux Bootstrap/hex.c @@ -79,7 +79,6 @@ int main(int argc, char *argv[]) toggle = false; putc(sum, stdout); } - break; } }while(c != EOF); diff --git a/makefile b/makefile index a2c4d1f..3e75bd7 100644 --- a/makefile +++ b/makefile @@ -141,14 +141,10 @@ prototype_lisp: lisp.c lisp.h lisp_cell.c lisp_eval.c lisp_print.c lisp_read.c | # Clean up after ourselves .PHONY: clean clean: - rm -f libvm.so libvm-production.so bin/vm bin/vm-production - -.PHONY: clean-hard -clean-hard: clean rm -rf bin/ roms/ prototypes/ .PHONY: clean-hardest -clean-hardest: +clean-hard: git reset --hard git clean -fd rm -rf bin/ roms/ prototypes/