1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-07 19:29:18 +00:00
cc65/libsrc/atari/carthdr.s
2014-01-14 22:53:49 +01:00

21 lines
421 B
ArmAsm

; Cartridge "header"
; (In fact, it's at the end of the cartridge, so more a "trailer".)
;
; Christian Groessler, 06-Jan-2014
.ifndef __ATARIXL__
.import __CARTFLAGS__, cartinit, cartstart
.export __CART_HEADER__: absolute = 1
.include "atari.inc"
.segment "CARTHDR"
.word cartstart ; start routine
.byte 0 ; must be zero
.byte <__CARTFLAGS__
.word cartinit ; init routine
.endif ; .ifndef __ATARIXL__