]> git.sur5r.net Git - cc65/blob - libsrc/atari5200/get_tv.s
Just removed some trailing spaces.
[cc65] / libsrc / atari5200 / get_tv.s
1 ;
2 ; Christian Groessler, 2014
3 ;
4 ; unsigned char get_tv (void);
5 ; /* Return the video mode the machine is using */
6 ;
7
8         .include        "get_tv.inc"
9
10
11 ;--------------------------------------------------------------------------
12 ; _get_tv
13
14 .proc   _get_tv
15
16         lda     #<TV::NTSC
17         ldx     #>TV::NTSC
18         rts
19
20 .endproc