1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 06:29:36 +00:00
cc65/libsrc/atmos/wherey.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

20 lines
211 B
ArmAsm

;
; Ullrich von Bassewitz, 2003-04-13
;
; unsigned char wherey (void);
;
.export _wherey
.include "atmos.inc"
.proc _wherey
ldx #$00
lda CURS_Y
rts
.endproc