]> git.sur5r.net Git - cc65/blob - libsrc/tgi/tgi_getmaxy.s
Two fixes from Stefan Haubenthal
[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         .import         decax1
11
12 .proc   _tgi_getmaxy
13
14         jsr     _tgi_getyres
15         jmp     decax1
16
17 .endproc
18