2002-06-21 12:46:52 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 21.06.2002
|
|
|
|
;
|
|
|
|
; unsigned __fastcall__ tgi_getmaxy (void);
|
|
|
|
; /* Return the maximum y coordinate. The resolution in y direction is
|
|
|
|
; * getmaxy() + 1
|
|
|
|
; */
|
|
|
|
|
|
|
|
.include "tgi-kernel.inc"
|
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.proc _tgi_getmaxy
|
2002-06-21 12:46:52 +00:00
|
|
|
|
2009-11-06 12:02:52 +00:00
|
|
|
lda _tgi_ymax
|
|
|
|
ldx _tgi_ymax+1
|
|
|
|
rts
|
2002-06-21 12:46:52 +00:00
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.endproc
|
2002-06-21 12:46:52 +00:00
|
|
|
|