]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_getmaxx.s
removed some duplicated GEOS conio stuff
[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
11         .import         decax1
12
13
14 .proc   _tgi_getmaxx
15
16         jsr     _tgi_getxres
17         jmp     decax1
18
19 .endproc
20
21