From: cuz Date: Thu, 30 Nov 2000 08:50:09 +0000 (+0000) Subject: Added config file for bcc micro X-Git-Tag: V2.12.0~3041 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fef6e7d7d668e30579d24eaf290a10ff3481c270;p=cc65 Added config file for bcc micro git-svn-id: svn://svn.cc65.org/cc65/trunk@496 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ld65/cfg/bbc.cfg b/src/ld65/cfg/bbc.cfg new file mode 100644 index 000000000..7b19096ee --- /dev/null +++ b/src/ld65/cfg/bbc.cfg @@ -0,0 +1,23 @@ +MEMORY { + ZP: start = $70, size = $20, type = rw; + RAM: start = $E00, size = $7200, file = %O; +} +SEGMENTS { + CODE: load = RAM, type = wprot; + RODATA: load = RAM, type = wprot; + DATA: load = RAM, type = rw; + BSS: load = RAM, type = bss, define = yes; + ZEROPAGE: load = ZP, type = zp; +} +FEATURES { + CONDES: segment = RODATA, + type = constructor, + label = __CONSTRUCTOR_TABLE__, + count = __CONSTRUCTOR_COUNT__; + CONDES: segment = RODATA, + type = destructor, + label = __DESTRUCTOR_TABLE__, + count = __DESTRUCTOR_COUNT__; +} + +