mirror of
https://github.com/cc65/cc65.git
synced 2025-02-09 17:33:00 +00:00
12 lines
324 B
ArmAsm
12 lines
324 B
ArmAsm
; This file defines the EXE header and main chunk load header for Atari executables
|
|
|
|
.export __EXEHDR__: absolute = 1
|
|
.import __RAM_START__, __BSS_LOAD__
|
|
|
|
.segment "EXEHDR"
|
|
.word $FFFF
|
|
|
|
.segment "MAINHDR"
|
|
.word __RAM_START__
|
|
.word __BSS_LOAD__ - 1
|