in the first two bytes of a file loaded with LOAD.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4855
b7a2c559-68d2-44c3-8de9-
860c34a00d81
gotoxy.o \
gotoy.o \
initcwd.o \
+ loadaddr.o \
open.o \
oserrlist.o \
oserror.o \
--- /dev/null
+;
+; Ullrich von Bassewitz, 2010-11-13
+;
+; This module supplies the load address that is expected by Commodore
+; machines in the first two bytes of an excutable disk file.
+;
+
+
+ ; The following symbol is used by linker config to force the module
+ ; to get included into the output file
+ .export __LOADADDR__: absolute = 1
+
+.segment "LOADADDR"
+
+ .addr *+2
+