mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
16 lines
215 B
ArmAsm
16 lines
215 B
ArmAsm
;
|
|
; 2019-11-06, Greg King
|
|
;
|
|
; unsigned char wherey (void);
|
|
;
|
|
|
|
.export _wherey
|
|
|
|
.include "cx16.inc"
|
|
|
|
.proc _wherey
|
|
lda CURS_Y
|
|
ldx #>$0000
|
|
rts
|
|
.endproc
|