diff --git a/notes/2023-08-10--dev-notes.md b/notes/2023-08-10--dev-notes.md index 269a52c..c28e99e 100644 --- a/notes/2023-08-10--dev-notes.md +++ b/notes/2023-08-10--dev-notes.md @@ -19,4 +19,14 @@ - Then $00 could contain a jump to the start of code, and we wouldn't have this strange "IP doesn't start at 0" situation - But, this might feel more complicated, and it would make working with the display a little less elegant... - C64 has random stuff at $0000 - - How does the C64's PC get initialized ?? \ No newline at end of file + - How does the C64's PC get initialized ?? + +## (Moved from readme:) Nice features that didn't fit + +- Hop `IF<` and hop `IF>` +- `MUL` and `DIV` +- Rotates and shifts + +## (Moved from readme:) Possible features, maybe someday + +- Timer (for a version in software/electronic-hardware) diff --git a/readme.md b/readme.md index 72fbe68..885b8f1 100644 --- a/readme.md +++ b/readme.md @@ -48,12 +48,6 @@ With verbose debugging output: one byte for the opcode, one for the argument -### Nice features that didn't fit - -- Hop `IF<` and hop `IF>` -- `MUL` and `DIV` -- Rotates and shifts - ## Registers and Flags - `A` - accumulator @@ -70,10 +64,6 @@ With verbose debugging output: - `30 ` - initial value for IP - `30-FF` - free -### Maybe someday - -- Timer (for a version in software/electronic-hardware) - ## Assembly language