emailler/client/cfg/c64prg.cfg
jonnosan 40563778f0 RAM segment now 7FF..5FFF
git-svn-id: http://svn.code.sf.net/p/netboot65/code@75 93682198-c243-4bdb-bd91-e943c89aac3b
2009-04-04 05:12:54 +00:00

17 lines
599 B
INI

MEMORY {
ZP: start = $02, size = $1A, type = rw, define = yes;
IP65ZP: start = $5f, size = $10, type = rw, define = yes;
RAM: start = $07FF, size = $58ab, define = yes, file = %O;
DISCARD: start = $77FF, size = $10, define = yes;
}
SEGMENTS {
STARTUP: load = RAM, type = ro ,define = yes;
CODE: load = RAM, type = ro,define = yes;
DATA: load = RAM, type = rw,define = yes;
RODATA: load = RAM, type = ro,define = yes;
BSS: load = RAM, type = bss;
ZEROPAGE: load = ZP, type = zp;
IP65ZP: load = IP65ZP, type = zp;
EXEHDR: load = DISCARD, type = ro;
}