]> git.sur5r.net Git - cc65/blob - libsrc/cbm610/get_tv.s
Adjusted C declarations to the changed static driver names.
[cc65] / libsrc / cbm610 / get_tv.s
1 ;
2 ; Stefan Haubenthal, 2009-08-02
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::OTHER     ; CRTC
17         ldx     #>TV::OTHER
18         rts
19
20 .endproc