1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00
cc65/libsrc/tgi/tgi_getyres.s

19 lines
325 B
ArmAsm
Raw Normal View History

;
; Ullrich von Bassewitz, 21.06.2002
;
; unsigned __fastcall__ tgi_getyres (void);
; /* Return the resolution in Y direction */
.include "tgi-kernel.inc"
.export _tgi_getyres
.import ldaxidx
_tgi_getyres:
lda _tgi_yres
ldx _tgi_yres+1
rts