2014-11-23 15:56:38 +01:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 06.08.1998
|
|
|
|
; Copied from cbm/wherey.s
|
|
|
|
;
|
|
|
|
; unsigned char wherey (void);
|
|
|
|
;
|
|
|
|
.export _wherey
|
2015-02-12 22:12:51 +01:00
|
|
|
.include "extzp.inc"
|
2014-11-23 15:56:38 +01:00
|
|
|
|
|
|
|
.proc _wherey
|
|
|
|
lda CURS_Y
|
|
|
|
ldx #$00
|
|
|
|
rts
|
|
|
|
.endproc
|