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
|
|
|
.import decax1
|
|
|
|
|
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.proc _tgi_getmaxx
|
|
|
|
|
2002-06-21 12:46:52 +00:00
|
|
|
jsr _tgi_getxres
|
|
|
|
jmp decax1
|
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.endproc
|
2002-06-21 12:46:52 +00:00
|
|
|
|
|
|
|
|