mirror of
https://github.com/cc65/cc65.git
synced 2026-03-12 14:42:08 +00:00
The size of the load chunk was calculated incorrectly in exehdr.s
since the INIT segment is no longer being part of the file anymore.
While at it, change atari-cassette.cfg so that order of BSS and INIT
is the same as in the other configs. See 692f96409d why it was
in different order.
12 lines
328 B
ArmAsm
12 lines
328 B
ArmAsm
; This file defines the EXE header and main chunk load header for Atari executables
|
|
|
|
.export __EXEHDR__: absolute = 1
|
|
.import __MAIN_START__, __INIT_LOAD__
|
|
|
|
.segment "EXEHDR"
|
|
.word $FFFF
|
|
|
|
.segment "MAINHDR"
|
|
.word __MAIN_START__
|
|
.word __INIT_LOAD__ - 1
|