2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 06.08.1998
|
|
|
|
;
|
|
|
|
; unsigned char wherey (void);
|
2003-01-01 21:33:49 +00:00
|
|
|
;
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-01-01 21:33:49 +00:00
|
|
|
.export _wherey
|
2003-12-27 15:51:11 +00:00
|
|
|
.import CURS_Y: zp
|
2002-11-19 23:02:47 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-01-01 21:33:49 +00:00
|
|
|
.proc _wherey
|
2003-12-27 15:51:11 +00:00
|
|
|
lda CURS_Y
|
2003-01-01 21:33:49 +00:00
|
|
|
ldx #$00
|
2000-05-28 13:40:48 +00:00
|
|
|
rts
|
2003-01-01 21:33:49 +00:00
|
|
|
.endproc
|
2000-05-28 13:40:48 +00:00
|
|
|
|