]> git.sur5r.net Git - cc65/blob - libsrc/pet/get_tv.s
Fixed gcc compiler warning (#867)
[cc65] / libsrc / pet / get_tv.s
1 ;
2 ; Ullrich von Bassewitz, 2004-10-26
3 ;
4 ; unsigned char get_tv (void);
5 ; /* Return the video mode the machine is using */
6 ;
7
8         .include        "pet.inc"
9         .include        "get_tv.inc"
10
11 ;--------------------------------------------------------------------------
12 ; _get_tv
13
14 .proc   _get_tv
15
16         lda     #TV::OTHER
17         ldx     #0
18         rts
19
20 .endproc