1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00
cc65/libsrc/tgi/tgi_getyres.s

17 lines
258 B
ArmAsm
Raw Normal View History

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