mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
9f44d00d17
it makes no sense to be able to include/exclude them separately.
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
|