mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
ae922930a1
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
17 lines
399 B
ArmAsm
17 lines
399 B
ArmAsm
;
|
|
; 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
|
|
|