]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_getmaxy.s
Added strftime
[cc65] / libsrc / tgi / tgi_getmaxy.s
1 ;
2 ; Ullrich von Bassewitz, 21.06.2002
3 ;
4 ; unsigned __fastcall__ tgi_getmaxy (void);
5 ; /* Return the maximum y coordinate. The resolution in y direction is
6 ;  * getmaxy() + 1
7 ;  */
8
9         .include        "tgi-kernel.inc"
10         .export         _tgi_getmaxy
11         .import         _tgi_getyres
12         .import         decax1
13
14
15 _tgi_getmaxy:
16         jsr     _tgi_getyres
17         jmp     decax1
18
19