1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00
cc65/libsrc/atari/exehdr.s

12 lines
326 B
ArmAsm
Raw Permalink Normal View History

; This file defines the EXE header and main chunk load header for Atari executables
2013-10-18 01:07:01 +00:00
.export __EXEHDR__: absolute = 1
.import __MAIN_START__, __BSS_LOAD__
2013-10-18 01:07:01 +00:00
.segment "EXEHDR"
.word $FFFF
.segment "MAINHDR"
.word __MAIN_START__
.word __BSS_LOAD__ - 1