2014-11-23 14:56:38 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 06.08.1998
|
|
|
|
; Copied from cbm/wherex.s
|
|
|
|
|
|
|
|
; unsigned char wherex (void);
|
|
|
|
;
|
|
|
|
.export _wherex
|
2015-02-12 21:12:51 +00:00
|
|
|
.include "extzp.inc"
|
2014-11-23 14:56:38 +00:00
|
|
|
|
|
|
|
.proc _wherex
|
|
|
|
lda CURS_X
|
|
|
|
ldx #$00
|
|
|
|
rts
|
|
|
|
.endproc
|