1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 06:29:36 +00:00
cc65/libsrc/cbm/wherex.s
cuz 63437207a1 Use direct access to the position variables, since gotoxy uses them also.
git-svn-id: svn://svn.cc65.org/cc65/trunk@2844 b7a2c559-68d2-44c3-8de9-860c34a00d81
2003-12-27 15:51:11 +00:00

17 lines
208 B
ArmAsm

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