mirror of
https://github.com/cc65/cc65.git
synced 2024-11-05 08:05:51 +00:00
258ba05660
This allows to omit the headers and trailers if needed.
18 lines
440 B
ArmAsm
18 lines
440 B
ArmAsm
;
|
|
; Atari startup system check headers
|
|
;
|
|
; Christian Groessler, chris@groessler.org, 2013
|
|
;
|
|
.export __SYSCHKTRL__: absolute = 1
|
|
.import __SYSTEM_CHECK__
|
|
|
|
.include "atari.inc"
|
|
; ------------------------------------------------------------------------
|
|
; Chunk "trailer" - sets INITAD
|
|
|
|
.segment "SYSCHKTRL"
|
|
|
|
.word INITAD
|
|
.word INITAD+1
|
|
.word __SYSTEM_CHECK__
|