mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
17 lines
220 B
ArmAsm
17 lines
220 B
ArmAsm
;
|
|
; Kevin Ruland
|
|
;
|
|
; unsigned char wherey (void);
|
|
;
|
|
|
|
.export _wherey
|
|
|
|
.include "apple2.inc"
|
|
|
|
_wherey:
|
|
lda CV
|
|
sec
|
|
sbc WNDTOP
|
|
ldx #$00
|
|
rts
|