--- /dev/null
+MEMORY {
+ ZP: start = $02, size = $1A, type = rw;
+ RAM: start = $0001, size = $FFF0, 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__;
+}
+SYMBOLS {
+ __STACKSIZE__ = $800; # 2K stack
+}
scanner.o \
segments.o \
tgtcfg.o
-
+
# -----------------------------------------------------------------------------
# List of all config includes
bbc.inc \
c64.inc \
c128.inc \
+ cbm510.inc \
cbm610.inc \
geos.inc \
none.inc \
c128.inc: cfg/c128.cfg
@$(CVT) $< $@ CfgC128
+cbm510.inc: cfg/cbm510.cfg
+ @$(CVT) $< $@ CfgCBM510
+
cbm610.inc: cfg/cbm610.cfg
@$(CVT) $< $@ CfgCBM610
#include "bbc.inc"
#include "c128.inc"
#include "c64.inc"
+#include "cbm510.inc"
#include "cbm610.inc"
#include "geos.inc"
#include "none.inc"
#include "pet.inc"
#include "plus4.inc"
-
+
/*****************************************************************************/
-/* Data */
+/* Data */
/*****************************************************************************/
{ BINFMT_BINARY, CfgC128 },
{ BINFMT_BINARY, CfgEmpty }, /* Ace */
{ BINFMT_BINARY, CfgPlus4 },
+ { BINFMT_BINARY, CfgCBM510 },
{ BINFMT_BINARY, CfgCBM610 },
{ BINFMT_BINARY, CfgPET },
{ BINFMT_BINARY, CfgBBC },