2002-06-21 12:46:52 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 21.06.2002
|
|
|
|
;
|
|
|
|
; unsigned __fastcall__ tgi_getmaxx (void);
|
|
|
|
; /* Return the maximum x coordinate. The resolution in x direction is
|
|
|
|
; * getmaxx() + 1
|
|
|
|
; */
|
|
|
|
|
|
|
|
.include "tgi-kernel.inc"
|
2003-02-11 12:37:46 +00:00
|
|
|
|
2002-06-21 12:46:52 +00:00
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.proc _tgi_getmaxx
|
|
|
|
|
2009-11-06 12:02:52 +00:00
|
|
|
lda _tgi_xmax
|
|
|
|
ldx _tgi_xmax+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
|
|
|
|
|
|
|
|