forked from brooke/mandel-6502
moving the framebuffer into the basic space
fails on 130xe and 800xl for some reason works on 800 as expected
This commit is contained in:
parent
883f926e57
commit
acac5a8df4
2 changed files with 8 additions and 7 deletions
|
|
@ -6,9 +6,10 @@ SYMBOLS {
|
|||
}
|
||||
MEMORY {
|
||||
ZP: file = "", define = yes, start = $0082, size = $007E;
|
||||
#MAIN: file = %O, define = yes, start = %S, size = $BC20 - %S;
|
||||
MAIN: file = %O, define = yes, start = %S, size = $4000 - %S;
|
||||
TABLES: file = %O, define = yes, start = $a000, size = $c000 - $a000;
|
||||
# Keep $4000-7fff clear for expanded RAM access window
|
||||
TABLES: file = %O, define = yes, start = $8000, size = $a000 - $8000;
|
||||
# Keep $a000-$bfff clear for BASIC cartridge
|
||||
}
|
||||
FILES {
|
||||
%O: format = atari;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue