mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
18 lines
189 B
ArmAsm
18 lines
189 B
ArmAsm
|
|
||
|
;; Keivn Ruland
|
||
|
;;
|
||
|
;; unsigned char wherex( void );
|
||
|
;; unsigned char wherey( void );
|
||
|
|
||
|
.export _wherex, _wherey
|
||
|
|
||
|
.include "apple2.inc"
|
||
|
|
||
|
_wherex:
|
||
|
lda CH
|
||
|
rts
|
||
|
|
||
|
_wherey:
|
||
|
lda CV
|
||
|
rts
|
||
|
|