mirror of
https://github.com/cc65/cc65.git
synced 2025-02-10 09:31:08 +00:00
18 lines
171 B
ArmAsm
18 lines
171 B
ArmAsm
|
|
;; Keivn Ruland
|
|
;;
|
|
;; unsigned char wherex( void );
|
|
|
|
.export _wherex
|
|
|
|
.include "apple2.inc"
|
|
|
|
.proc _wherex
|
|
|
|
lda CH
|
|
ldx #0
|
|
rts
|
|
|
|
.endproc
|
|
|