remove debugging

This commit is contained in:
Stephen Crane 2016-01-24 13:16:26 +00:00
parent b963514111
commit 6df7dd7a9b
2 changed files with 0 additions and 4 deletions

View File

@ -12,4 +12,3 @@ Keyboard
- F4: load program from tape (by simulating typing it)
- F6: checkpoint machine
- F7: restore from current checkpoint on tape
- F8: enter debug mode (display current processor status on serial port)

View File

@ -84,9 +84,6 @@ void loop() {
if (filename)
restore(io.tape, PROGRAMS, filename);
break;
case PS2_F8:
cpu.debug();
break;
default:
io.up(key);
break;