]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_getmaxx.s
New module fileio-test.c
[cc65] / libsrc / tgi / tgi_getmaxx.s
1 ;
2 ; Ullrich von Bassewitz, 21.06.2002
3 ;
4 ; unsigned __fastcall__ tgi_getmaxx (void);
5 ; /* Return the maximum x coordinate. The resolution in x direction is
6 ;  * getmaxx() + 1
7 ;  */
8
9         .include        "tgi-kernel.inc"
10         .export         _tgi_getmaxx
11         .import         _tgi_getxres
12         .import         decax1
13
14
15 _tgi_getmaxx:
16         jsr     _tgi_getxres
17         jmp     decax1
18
19
20