]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_getxres.s
Restore src/cc65/locals.c:278 to its orignal state
[cc65] / libsrc / tgi / tgi_getxres.s
1 ;
2 ; Ullrich von Bassewitz, 21.06.2002
3 ;
4 ; unsigned tgi_getxres (void);
5 ; /* Return the resolution in X direction */
6
7
8         .include        "tgi-kernel.inc"
9
10 .proc   _tgi_getxres
11
12         lda     _tgi_xres
13         ldx     _tgi_xres+1
14         rts
15
16 .endproc