18 lines
251 B
ArmAsm
18 lines
251 B
ArmAsm
;
|
|
; Kevin Ruland
|
|
; Oleg A. Odintsov, Moscow, 2024
|
|
;
|
|
; unsigned char wherey (void);
|
|
;
|
|
|
|
.export _wherey
|
|
|
|
.include "agat.inc"
|
|
|
|
_wherey:
|
|
lda CV
|
|
sec
|
|
sbc WNDTOP
|
|
ldx #$00
|
|
rts
|