From 5f79c981b2ddea5bb72863c193aa7d7a66633552 Mon Sep 17 00:00:00 2001 From: n loewen Date: Tue, 1 Aug 2023 15:30:57 +0100 Subject: [PATCH] Correct off-by-one error in memory map --- readme.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index bc1103c..371e90b 100644 --- a/readme.md +++ b/readme.md @@ -2,6 +2,8 @@ ## TODO +- [x] Add hex printing to memory-printing script + - [ ] Document current state of affairs (how to run it etc) Computer: @@ -13,7 +15,7 @@ Assembler: Misc: - [ ] 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... ## Instruction set @@ -56,7 +58,7 @@ Misc: - `00-0F` - 4x4 display - `10-1F` - keypad? (details TBD) - `20 ` - initial value for IP ? -- `21-FF` - free +- `20-FF` - free ### Maybe someday