mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-05 00:04:46 +00:00
c4579af652
fixed up jmp to BASIC after downloading git-svn-id: http://svn.code.sf.net/p/netboot65/code@97 93682198-c243-4bdb-bd91-e943c89aac3b
20 lines
607 B
INI
20 lines
607 B
INI
# CA65 config for a Retro Replay cartridge
|
|
# default is for GAME=1, EXROM=0,
|
|
|
|
MEMORY {
|
|
IP65ZP: start = $A3, size = $0E, type = rw, define = yes;
|
|
HEADER: start = $8000, size = $18, file = %O;
|
|
ROM: start = $8018, size = $1F00, define = yes, file = %O;
|
|
RAM: start = $C080, size = $0f80, define = yes;
|
|
|
|
|
|
}
|
|
SEGMENTS {
|
|
CARTRIDGE_HEADER: load = HEADER, type = ro;
|
|
CODE: load = ROM, type = ro;
|
|
RODATA: load = ROM, run=ROM, type = ro;
|
|
DATA: load = ROM, run = RAM, type = rw, define = yes;
|
|
BSS: load = RAM, type = bss;
|
|
IP65ZP: load = IP65ZP, type = zp;
|
|
}
|