mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-18 21:07:03 +00:00
28d1ce6c43
git-svn-id: http://svn.code.sf.net/p/netboot65/code@218 93682198-c243-4bdb-bd91-e943c89aac3b
22 lines
708 B
INI
22 lines
708 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 = $09, file = %O;
|
|
DEFAULTS: start = $8009, size = $1F, file = %O;
|
|
ROM: start = $8028, size = $1FC9, define = yes, file = %O;
|
|
RAM: start = $C010, size = $0fE0, define = yes;
|
|
|
|
|
|
}
|
|
SEGMENTS {
|
|
CARTRIDGE_HEADER: load = HEADER, type = ro;
|
|
IP65_DEFAULTS: load = DEFAULTS, 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;
|
|
}
|