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

16 lines
215 B
ArmAsm
Raw Normal View History

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