cc65/libsrc/atmos/wherex.s

18 lines
228 B
ArmAsm

;
; Ullrich von Bassewitz, 2003-04-13
;
; unsigned char wherex (void);
;
.export _wherex
.include "atmos.inc"
.proc _wherex
ldx #$00
lda CURS_X
rts
.endproc