From 5a821c5363c9163872d463f9de100d728e1d6e68 Mon Sep 17 00:00:00 2001 From: Bobbi Webber-Manners Date: Sun, 27 May 2018 14:22:59 -0400 Subject: [PATCH] Removed cc65 files from main directory. --- a2e.auxmem.emd | Bin 448 -> 0 bytes apple2enh-system.cfg | 40 --------------------------------------- c64.cfg | 44 ------------------------------------------- vic20-32k.cfg | 41 ---------------------------------------- 4 files changed, 125 deletions(-) delete mode 100644 a2e.auxmem.emd delete mode 100644 apple2enh-system.cfg delete mode 100644 c64.cfg delete mode 100644 vic20-32k.cfg diff --git a/a2e.auxmem.emd b/a2e.auxmem.emd deleted file mode 100644 index 484cfd9b31f96e1892c111407ca217749242c952..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 448 zcmZ9I%Syvg5QhJrr1j*|mTn~KCX2=kNNJ)erFg;1M(9Qa*DW*)!J-remy&wi2|hw7 zWRXRYK7ekzu{+ccpwe***O~3cPg3@ zq)Bo~pRafD1FLhGPLjtHK&jSWFa;KT_9vFQ8B4ZUky-3GW|rhjMQWt(Ow`||OhcM- Z9^7KoCz-s`GG%(E%ulBOuH+}b{0a9kamWAw diff --git a/apple2enh-system.cfg b/apple2enh-system.cfg deleted file mode 100644 index f4684d9..0000000 --- a/apple2enh-system.cfg +++ /dev/null @@ -1,40 +0,0 @@ -# Configuration for ProDOS 8 system programs (without the header) - -SYMBOLS { - __STACKSIZE__: type = weak, value = $0800; # 2k stack - __LCADDR__: type = weak, value = $D400; # Behind quit code - __LCSIZE__: type = weak, value = $0C00; # Rest of bank two -} -MEMORY { - ZP: file = "", define = yes, start = $0080, size = $001A; - MAIN: file = %O, start = $2000, size = $BF00 - $2000; - BSS: file = "", start = __ONCE_RUN__, size = $BF00 - __STACKSIZE__ - __ONCE_RUN__; - LC: file = "", define = yes, start = __LCADDR__, size = __LCSIZE__; -} -SEGMENTS { - ZEROPAGE: load = ZP, type = zp; - STARTUP: load = MAIN, type = ro; - LOWCODE: load = MAIN, type = ro, optional = yes; - CODE: load = MAIN, type = ro; - RODATA: load = MAIN, type = ro; - DATA: load = MAIN, type = rw; - INIT: load = MAIN, type = rw; - ONCE: load = MAIN, type = ro, define = yes; - LC: load = MAIN, run = LC, type = ro, optional = yes; - BSS: load = BSS, type = bss, define = yes; -} -FEATURES { - CONDES: type = constructor, - label = __CONSTRUCTOR_TABLE__, - count = __CONSTRUCTOR_COUNT__, - segment = ONCE; - CONDES: type = destructor, - label = __DESTRUCTOR_TABLE__, - count = __DESTRUCTOR_COUNT__, - segment = RODATA; - CONDES: type = interruptor, - label = __INTERRUPTOR_TABLE__, - count = __INTERRUPTOR_COUNT__, - segment = RODATA, - import = __CALLIRQ__; -} diff --git a/c64.cfg b/c64.cfg deleted file mode 100644 index 5bd8d82..0000000 --- a/c64.cfg +++ /dev/null @@ -1,44 +0,0 @@ -FEATURES { - STARTADDRESS: default = $0801; -} -SYMBOLS { - __LOADADDR__: type = import; - __EXEHDR__: type = import; - __STACKSIZE__: type = weak, value = $0800; # 2k stack - __HIMEM__: type = weak, value = $D000; -} -MEMORY { - ZP: file = "", define = yes, start = $0002, size = $001A; - LOADADDR: file = %O, start = %S - 2, size = $0002; - HEADER: file = %O, define = yes, start = %S, size = $000D; - MAIN: file = %O, define = yes, start = __HEADER_LAST__, size = __HIMEM__ - __HEADER_LAST__; - BSS: file = "", start = __ONCE_RUN__, size = __HIMEM__ - __STACKSIZE__ - __ONCE_RUN__; -} -SEGMENTS { - ZEROPAGE: load = ZP, type = zp; - LOADADDR: load = LOADADDR, type = ro; - EXEHDR: load = HEADER, type = ro; - STARTUP: load = MAIN, type = ro; - LOWCODE: load = MAIN, type = ro, optional = yes; - CODE: load = MAIN, type = ro; - RODATA: load = MAIN, type = ro; - DATA: load = MAIN, type = rw; - INIT: load = MAIN, type = rw; - ONCE: load = MAIN, type = ro, define = yes; - BSS: load = BSS, type = bss, define = yes; -} -FEATURES { - CONDES: type = constructor, - label = __CONSTRUCTOR_TABLE__, - count = __CONSTRUCTOR_COUNT__, - segment = ONCE; - CONDES: type = destructor, - label = __DESTRUCTOR_TABLE__, - count = __DESTRUCTOR_COUNT__, - segment = RODATA; - CONDES: type = interruptor, - label = __INTERRUPTOR_TABLE__, - count = __INTERRUPTOR_COUNT__, - segment = RODATA, - import = __CALLIRQ__; -} diff --git a/vic20-32k.cfg b/vic20-32k.cfg deleted file mode 100644 index 28dd661..0000000 --- a/vic20-32k.cfg +++ /dev/null @@ -1,41 +0,0 @@ -# Memory configuration for the VIC-20 with 32K RAM Cartridge -# Contributed by Stefan Haubenthal -SYMBOLS { - __LOADADDR__: type = import; - __EXEHDR__: type = import; - __STACKSIZE__: type = weak, value = $0400; # 1k stack -} -MEMORY { - ZP: file = "", define = yes, start = $0002, size = $001A; - LOADADDR: file = %O, start = $11FF, size = $0002; - HEADER: file = %O, start = $1201, size = $000C; - MAIN: file = %O, define = yes, start = $120D, size = $6DF3 - __STACKSIZE__; -} -SEGMENTS { - ZEROPAGE: load = ZP, type = zp; - LOADADDR: load = LOADADDR, type = ro; - EXEHDR: load = HEADER, type = ro; - STARTUP: load = MAIN, type = ro; - LOWCODE: load = MAIN, type = ro, optional = yes; - ONCE: load = MAIN, type = ro, optional = yes; - CODE: load = MAIN, type = ro; - RODATA: load = MAIN, type = ro; - DATA: load = MAIN, type = rw; - INIT: load = MAIN, type = bss; - BSS: load = MAIN, type = bss, define = yes; -} -FEATURES { - CONDES: type = constructor, - label = __CONSTRUCTOR_TABLE__, - count = __CONSTRUCTOR_COUNT__, - segment = ONCE; - CONDES: type = destructor, - label = __DESTRUCTOR_TABLE__, - count = __DESTRUCTOR_COUNT__, - segment = RODATA; - CONDES: type = interruptor, - label = __INTERRUPTOR_TABLE__, - count = __INTERRUPTOR_COUNT__, - segment = RODATA, - import = __CALLIRQ__; -}