Fixed regression in hex.c

This commit is contained in:
Jeremiah Orians 2017-12-11 18:50:53 -05:00
parent d80bcaa678
commit 7a6aeb42bc
No known key found for this signature in database
GPG Key ID: 7457821534D2ACCD
3 changed files with 2 additions and 6 deletions

View File

@ -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

View File

@ -79,7 +79,6 @@ int main(int argc, char *argv[])
toggle = false;
putc(sum, stdout);
}
break;
}
}while(c != EOF);

View File

@ -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/