Add TODOs
This commit is contained in:
parent
63637dac2f
commit
9fe17b801f
|
|
@ -1,5 +1,13 @@
|
|||
# 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
|
||||
|
||||
0 END
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ function CPU(mem) {
|
|||
this.instructionPointer = this.memory[addr];
|
||||
},
|
||||
|
||||
// UNIMPLEMENTED
|
||||
// TODO: UNIMPLEMENTED
|
||||
carry_toggle: () => { return; },
|
||||
carry_hop: () => { return; },
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue