Add TODOs

This commit is contained in:
n loewen 2023-07-25 15:59:57 +01:00
parent 63637dac2f
commit 9fe17b801f
2 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,13 @@
# Paper computer simulator experiment # Paper computer simulator experiment
## TODO
- [ ] Implement CCF and CHP
- [ ] Implement carry flag on SUB
- [ ] Write some more complex test programs
- [ ] Consider adding a way to visualize screen memory
- [ ] Do a proper binary version...
## ISA ## ISA
0 END 0 END

View File

@ -103,7 +103,7 @@ function CPU(mem) {
this.instructionPointer = this.memory[addr]; this.instructionPointer = this.memory[addr];
}, },
// UNIMPLEMENTED // TODO: UNIMPLEMENTED
carry_toggle: () => { return; }, carry_toggle: () => { return; },
carry_hop: () => { return; }, carry_hop: () => { return; },
}; };