1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +00:00
cc65/libsrc/atari7800/wherex.s
Karri Kaksonen cdc6e1c61f Split files
2022-04-16 19:15:19 +03:00

20 lines
327 B
ArmAsm

;
; 2022-04-16, Karri Kaksonen
;
; unsigned char wherex()
;
.export _wherex
.import CURS_X
;-----------------------------------------------------------------------------
; Get cursor X position
;
.proc _wherex
ldx #0
lda CURS_X
rts
.endproc