1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 22:29:31 +00:00
cc65/libsrc/apple2/wherey.s
cuz a7acdf7072 Fixed a bug, splitted the where.s module into wherex.s and wherey.s
git-svn-id: svn://svn.cc65.org/cc65/trunk@2415 b7a2c559-68d2-44c3-8de9-860c34a00d81
2003-08-26 20:14:43 +00:00

18 lines
167 B
ArmAsm

;; Keivn Ruland
;;
;; unsigned char wherey( void );
.export _wherey
.include "apple2.inc"
.proc _wherey
lda CV
ldx #0
rts
.endproc