1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00
cc65/libsrc/atmos/wherex.s
cuz 9f547a5a4d Add basic support for ORIC Atmos
git-svn-id: svn://svn.cc65.org/cc65/trunk@2046 b7a2c559-68d2-44c3-8de9-860c34a00d81
2003-04-13 22:12:09 +00:00

19 lines
211 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