]> git.sur5r.net Git - cc65/blob - libsrc/atari5200/cartentry.s
atari5200: conio now uses just four colors altogether
[cc65] / libsrc / atari5200 / cartentry.s
1 ; Cartridge entry point
2 ;
3 ; Christian Groessler, 01-Mar-2014
4
5 .export         __CART_ENTRY__: absolute = 1
6 .import         __CARTSIZE__, start
7 .forceimport    __CART_YEAR__, __CART_NAME__
8
9 .segment        "CARTENTRY"
10
11                 .word   start       ; entry point
12
13 .assert         (__CARTSIZE__ = $4000 || __CARTSIZE__ = $8000), error, "Cartridge size must either be $4000 or $8000"