Correct off-by-one error in memory map
This commit is contained in:
parent
55d4885889
commit
5f79c981b2
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
|
- [x] Add hex printing to memory-printing script
|
||||||
|
|
||||||
- [ ] Document current state of affairs (how to run it etc)
|
- [ ] Document current state of affairs (how to run it etc)
|
||||||
|
|
||||||
Computer:
|
Computer:
|
||||||
|
|
@ -13,7 +15,7 @@ Assembler:
|
||||||
|
|
||||||
Misc:
|
Misc:
|
||||||
- [ ] Write some more complex test programs
|
- [ ] Write some more complex test programs
|
||||||
- [ ] Consider adding a way to visualize screen memory
|
- [x] Consider adding a way to visualize screen memory
|
||||||
- [ ] Do a proper binary version...
|
- [ ] Do a proper binary version...
|
||||||
|
|
||||||
## Instruction set
|
## Instruction set
|
||||||
|
|
@ -56,7 +58,7 @@ Misc:
|
||||||
- `00-0F` - 4x4 display
|
- `00-0F` - 4x4 display
|
||||||
- `10-1F` - keypad? (details TBD)
|
- `10-1F` - keypad? (details TBD)
|
||||||
- `20 ` - initial value for IP ?
|
- `20 ` - initial value for IP ?
|
||||||
- `21-FF` - free
|
- `20-FF` - free
|
||||||
|
|
||||||
### Maybe someday
|
### Maybe someday
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue