cc65/libsrc/c1p/wherex.s
2014-11-23 15:56:38 +01:00

14 lines
248 B
ArmAsm

;
; Ullrich von Bassewitz, 06.08.1998
; Copied from cbm/wherex.s
; unsigned char wherex (void);
;
.export _wherex
.import CURS_X: zp
.proc _wherex
lda CURS_X
ldx #$00
rts
.endproc