17 lines
171 B
ArmAsm
17 lines
171 B
ArmAsm
|
|
;; Keivn Ruland
|
|
;;
|
|
;; unsigned char wherex( void );
|
|
|
|
.export _wherex
|
|
|
|
.include "apple2.inc"
|
|
|
|
.proc _wherex
|
|
|
|
lda CH
|
|
ldx #0
|
|
rts
|
|
|
|
.endproc
|
|
|