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