]> git.sur5r.net Git - cc65/blob - libsrc/atari/carthdr.s
Comment the ATASCII to screen code conversion.
[cc65] / libsrc / atari / carthdr.s
1 ; Cartridge "header"
2 ; (In fact, it's at the end of the cartridge, so more a "trailer".)
3 ;
4 ; Christian Groessler, 06-Jan-2014
5
6 .ifndef __ATARIXL__
7
8 .export         __CART_HEADER__: absolute = 1
9
10 .import         __CARTSIZE__, __CARTFLAGS__, cartinit, cartstart
11
12 .include        "atari.inc"
13
14 .segment        "CARTHDR"
15
16                 .word   cartstart       ; start routine
17                 .byte   0               ; must be zero
18                 .byte   <__CARTFLAGS__
19                 .word   cartinit        ; init routine
20
21 .assert         (__CARTSIZE__ = $2000 || __CARTSIZE__ = $4000), error, "Cartridge size must either be $2000 or $4000"
22
23 .endif  ; .ifndef __ATARIXL__