Files
cc65/libsrc/agat/wherey.s
2025-06-04 22:51:17 +03:00

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