2002-06-21 12:46:52 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 21.06.2002
|
|
|
|
;
|
2012-03-04 13:08:54 +00:00
|
|
|
; unsigned tgi_getmaxx (void);
|
2002-06-21 12:46:52 +00:00
|
|
|
; /* Return the maximum x coordinate. The resolution in x direction is
|
2014-06-30 09:10:35 +00:00
|
|
|
; ** getmaxx() + 1
|
|
|
|
; */
|
2002-06-21 12:46:52 +00:00
|
|
|
|
|
|
|
.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
|