1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

Added configuration for cc65 modules

git-svn-id: svn://svn.cc65.org/cc65/trunk@1261 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-04-25 05:07:12 +00:00
parent 231fed08f2
commit 0041c3c8ac

18
src/ld65/cfg/module.cfg Normal file
View File

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