aboutsummaryrefslogtreecommitdiff
path: root/src/exehdr.s
blob: 941e2868e44821df025602ef5a02351264486798 (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__, __CODE_SIZE__

.segment        "EXEHDR"
        .word   $FFFF

.segment        "MAINHDR"
        .word   __MAIN_START__
        .word   __MAIN_START__ + __CODE_SIZE__ - 1