From: cuz Date: Thu, 25 Apr 2002 05:07:12 +0000 (+0000) Subject: Added configuration for cc65 modules X-Git-Tag: V2.12.0~2360 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0041c3c8ac3c96abb867a2af92f8cb993b7cd492;p=cc65 Added configuration for cc65 modules git-svn-id: svn://svn.cc65.org/cc65/trunk@1261 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ld65/cfg/module.cfg b/src/ld65/cfg/module.cfg new file mode 100644 index 000000000..f6640f4c1 --- /dev/null +++ b/src/ld65/cfg/module.cfg @@ -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; +} + +