mirror of
https://github.com/cc65/cc65.git
synced 2024-11-07 21:10:15 +00:00
16 lines
215 B
ArmAsm
16 lines
215 B
ArmAsm
|
;
|
||
|
; 2019-11-06, Greg King
|
||
|
;
|
||
|
; unsigned char wherex (void);
|
||
|
;
|
||
|
|
||
|
.export _wherex
|
||
|
|
||
|
.include "cx16.inc"
|
||
|
|
||
|
.proc _wherex
|
||
|
lda CURS_X
|
||
|
ldx #>$0000
|
||
|
rts
|
||
|
.endproc
|