Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,11 @@ Project website:

Release notes:

1.0.3:

6502 engine: Fixed some memory corruption issues, especially
involving save/restore/undo operations.

1.0.2:

Cleaned up the specification and some dev tools.
Expand Down
2 changes: 1 addition & 1 deletion src/6502/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ clean:
aambox6502: aambox6502.c fake6502.c

aambox_frontend.bin: aambox_frontend.s engine.s
xa -o $@ $<
xa -l aambox.labels -o $@ $< -DRAMTOP=49152

c64_frontend.bin: c64_frontend.s engine.s font.bin
xa -l labels -o $@ $< -DVERSION=\"$(VERSION)\"
Expand Down
6 changes: 6 additions & 0 deletions src/6502/aambox_frontend.s
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

TRACE_INST = 0
TRACE_STORE = 0
UNDO = 1
SAVERESTORE = 1

DEFWIDTH = 80
PREXTRA = 2
Expand Down Expand Up @@ -502,6 +504,10 @@ io_readpage
#include "engine.s"

SAFEPG = (* + $ff) >> 8
#ifdef RAMTOP
RAMEND = RAMTOP
#else
RAMEND = $10000
#endif

SAVEADDR = SAFEPG << 8
2 changes: 2 additions & 0 deletions src/6502/c64_frontend.s
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
TRACE_INST = 0
TRACE_STORE = 0
MEASURE_TIME = 0
UNDO = 1
SAVERESTORE = 1

DEFWIDTH = 40
PREXTRA = 8
Expand Down
Loading
Loading