emailler/cfg/c64prg.cfg

15 lines
451 B
INI
Raw Normal View History

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