Files
cc65/src/ld65/cfg/module.cfg
cuz 0fec0ce4d0 Revoked last change
git-svn-id: svn://svn.cc65.org/cc65/trunk@1333 b7a2c559-68d2-44c3-8de9-860c34a00d81
2002-07-05 21:12:06 +00:00

21 lines
490 B
INI

MEMORY {
ZP: start = $0000, size = $0100, type = rw, define = yes;
COMBINED: start = $0000, size = $FFFF, file = %O;
}
SEGMENTS {
JUMPTABLE: load = COMBINED, type = wprot;
CODE: load = COMBINED, type = wprot;
RODATA: load = COMBINED, type = wprot;
DATA: load = COMBINED, type = rw, define = yes;
BSS: load = COMBINED, type = bss, define = yes;
ZEROPAGE: load = ZP, type = zp;
}
FILES {
%O: format = o65;
}
FORMATS {
o65: os = cc65, type = small;
}