cc65/libsrc/cx16/wherey.s

16 lines
215 B
ArmAsm

;
; 2019-11-06, Greg King
;
; unsigned char wherey (void);
;
.export _wherey
.include "cx16.inc"
.proc _wherey
lda CURS_Y
ldx #>$0000
rts
.endproc