--- /dev/null
+MEMORY {
+ ZP: start = $00, size = $100, type = rw, define = yes;
+ HEADER: start = $0000, size = $A, file = %O;
+ RAM: start = $0400, size = $BA3F, define = yes, file = %O;
+}
+SEGMENTS {
+ EXEHDR: load = HEADER, type = wprot;
+ STARTUP: load = RAM, type = wprot;
+ LOWCODE: load = RAM, type = wprot, optional = yes;
+ 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;
+ EXTZP: 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__;
+ CONDES: segment = RODATA,
+ type = interruptor,
+ label = __INTERRUPTOR_TABLE__,
+ count = __INTERRUPTOR_COUNT__;
+}
+SYMBOLS {
+ __STACKSIZE__ = $800; # 2K stack
+}
# Library dir
COMMON = ../common
-# The linker library search path. Default is "/usr/lib/cc65/lib/" if nothing
+# The linker library search path. Default is "/usr/lib/cc65/lib/" if nothing
# is defined. You may use CC65_LIB=foo on the command line to override it.
CC65_LIB = \"/usr/lib/cc65/lib/\"
cbm610.inc \
geos.inc \
lunix.inc \
+ lynx.inc \
module.inc \
nes.inc \
none.inc \
lunix.inc: cfg/lunix.cfg
@$(CVT) $< $@ CfgLunix
+lynx.inc: cfg/lynx.cfg
+ @$(CVT) $< $@ CfgLynx
+
module.inc: cfg/module.cfg
@$(CVT) $< $@ CfgModule
/* */
/* */
/* */
-/* (C) 1998-2003 Ullrich von Bassewitz */
+/* (C) 1998-2004 Ullrich von Bassewitz */
/* Römerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
#include "cbm610.inc"
#include "geos.inc"
#include "lunix.inc"
+#include "lynx.inc"
#include "module.inc"
#include "nes.inc"
#include "none.inc"
/*****************************************************************************/
-
+
/* Target configurations for all systems */
-const TargetDesc Targets [TGT_COUNT] = {
+const TargetDesc Targets[TGT_COUNT] = {
{ BINFMT_BINARY, CfgNone },
{ BINFMT_O65, CfgModule },
{ BINFMT_BINARY, CfgAtari },
{ BINFMT_BINARY, CfgAtmos },
{ BINFMT_BINARY, CfgNES },
{ BINFMT_BINARY, CfgSupervision },
+ { BINFMT_BINARY, CfgLynx },
};