aboutsummaryrefslogtreecommitdiff
path: root/src/exehdr.s
blob: 7abb7c1ac569ff712ac1695a779ee5a0860f2b02 (plain)
1
2
3
4
5
6
7
8
9
10
11
; This file defines the EXE header and main chunk load header for Atari executables

        .export         __EXEHDR__: absolute = 1
        .import         __MAIN_START__, __BSS_LOAD__

.segment        "EXEHDR"
        .word   $FFFF

.segment        "MAINHDR"
        .word   __MAIN_START__
        .word   __BSS_LOAD__ - 1