]> git.sur5r.net Git - cc65/blob - libsrc/atari/tvtype.s
info about c1541 in docs, lowered highest available address to $6000 due to
[cc65] / libsrc / atari / tvtype.s
1 ;
2 ; Christian Groessler, December 2000
3 ;
4 ; unsigned char get_tv(void)
5 ;
6 ; returns the TV system the machine is using
7 ;
8
9
10         .include        "atari.inc"
11         .export         _get_tv
12
13 .proc   _get_tv
14
15         lda     PALNTS
16         ldx     #0
17         rts
18
19 .endproc