mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
15 lines
176 B
ArmAsm
15 lines
176 B
ArmAsm
|
;
|
||
|
; jede jede@oric.org 2017-02-25
|
||
|
;
|
||
|
.export _wherex
|
||
|
|
||
|
.importzp sp
|
||
|
|
||
|
.include "telestrat.inc"
|
||
|
|
||
|
.proc _wherex
|
||
|
ldx #$00
|
||
|
lda SCRX
|
||
|
rts
|
||
|
.endproc
|