Atari: fix fallout of change of INIT segment to 'bss' type
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.
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
; This file defines the EXE header and main chunk load header for Atari executables
|
||||
|
||||
.export __EXEHDR__: absolute = 1
|
||||
.import __MAIN_START__, __BSS_LOAD__
|
||||
.import __MAIN_START__, __INIT_LOAD__
|
||||
|
||||
.segment "EXEHDR"
|
||||
.word $FFFF
|
||||
|
||||
.segment "MAINHDR"
|
||||
.word __MAIN_START__
|
||||
.word __BSS_LOAD__ - 1
|
||||
.word __INIT_LOAD__ - 1
|
||||
|
||||
Reference in New Issue
Block a user