From: uz Date: Fri, 18 Sep 2009 17:04:20 +0000 (+0000) Subject: Removed the (unused and probably non-working) config for OS/A65. X-Git-Tag: V2.13.0rc1~69 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=dca7cfd24977ca17a686f9719426147537ce1fff;hp=d0e9f0f9871c28728df12d4b4aade494bfa4399c;p=cc65 Removed the (unused and probably non-working) config for OS/A65. git-svn-id: svn://svn.cc65.org/cc65/trunk@4187 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ld65/cfg/osa65.cfg b/src/ld65/cfg/osa65.cfg deleted file mode 100644 index c926591c3..000000000 --- a/src/ld65/cfg/osa65.cfg +++ /dev/null @@ -1,39 +0,0 @@ -MEMORY { - COMBINED: start = $0000, size = $FFFF, file = %O; - ZEROPAGE: start = $0000, size = $0100, file = %O; -} -SEGMENTS { - LOWCODE: load = COMBINED, type = ro, optional = yes; - INIT: load = COMBINED, type = ro, define = yes, optional = yes; - CODE: load = COMBINED, type = ro; - RODATA: load = COMBINED, type = ro; - DATA: load = COMBINED, type = rw, define = yes; - BSS: load = COMBINED, type = bss, define = yes; - HEAP: load = COMBINED, type = bss, optional = yes; - ZEROPAGE: load = ZEROPAGE, type = zp; -} -FEATURES { - CONDES: segment = INIT, - type = constructor, - label = __CONSTRUCTOR_TABLE__, - count = __CONSTRUCTOR_COUNT__; - CONDES: segment = RODATA, - type = destructor, - label = __DESTRUCTOR_TABLE__, - count = __DESTRUCTOR_COUNT__; - CONDES: type = interruptor, - segment = RODATA, - label = __INTERRUPTOR_TABLE__, - count = __INTERRUPTOR_COUNT__; -} -FILES { - %O: format = o65; -} -FORMATS { - o65: os = osa65, type = small, - import = OSA2KERNAL, - import = LIB6502; -} -SYMBOLS { - __STACKSIZE__ = $800; # 2K stack -}