From b6d872e5b7d206c455e7c92c5b3311d53a27ab73 Mon Sep 17 00:00:00 2001 From: uz Date: Sun, 14 Nov 2010 13:11:09 +0000 Subject: [PATCH] Added the first implementation of a linker config suited for c64 assembly programs. git-svn-id: svn://svn.cc65.org/cc65/trunk@4864 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/ld65/cfg/c64-asm.cfg | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/ld65/cfg/c64-asm.cfg diff --git a/src/ld65/cfg/c64-asm.cfg b/src/ld65/cfg/c64-asm.cfg new file mode 100644 index 000000000..0527be5d7 --- /dev/null +++ b/src/ld65/cfg/c64-asm.cfg @@ -0,0 +1,18 @@ +FEATURES { + STARTADDRESS: default = $0801; +} +SYMBOLS { + __LOADADDR__: type = import; +} +MEMORY { + LOADADDR: file = %O, start = %S - 2, size = $0002; + RAM: file = %O, start = %S, size = $10000 - %S; +} +SEGMENTS { + LOADADDR: load = LOADADDR, type = ro; + EXEHDR: load = RAM, type = ro, optional = yes; + CODE: load = RAM, type = rw, optional = yes; + RODATA: load = RAM, type = ro, optional = yes; + DATA: load = RAM, type = rw, optional = yes; + BSS: load = RAM, type = bss, optional = yes; +}