mirror of
https://github.com/cc65/cc65.git
synced 2024-11-06 15:06:07 +00:00
17 lines
309 B
ArmAsm
17 lines
309 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 23.06.2002
|
||
|
;
|
||
|
; void __fastcall__ tgi_getpagecount (void);
|
||
|
; /* Returns the number of screen pages available. */
|
||
|
;
|
||
|
|
||
|
.include "tgi-kernel.inc"
|
||
|
.export _tgi_getpagecount
|
||
|
|
||
|
|
||
|
_tgi_getpagecount:
|
||
|
lda _tgi_pagecount
|
||
|
ldx #0
|
||
|
rts
|
||
|
|