2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
;; Keivn Ruland
|
|
|
|
;;
|
|
|
|
;; unsigned char wherey( void );
|
|
|
|
|
2003-08-26 20:14:43 +00:00
|
|
|
.export _wherey
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.include "apple2.inc"
|
|
|
|
|
2003-08-26 20:14:43 +00:00
|
|
|
.proc _wherey
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
lda CV
|
2004-03-11 21:54:22 +00:00
|
|
|
ldx #$00
|
2000-05-28 13:40:48 +00:00
|
|
|
rts
|
2003-08-26 20:14:43 +00:00
|
|
|
|
|
|
|
.endproc
|
|
|
|
|