Files
cc65/libsrc/agat/wherex.s
2025-06-07 12:36:49 +03:00

20 lines
248 B
ArmAsm

;
; Kevin Ruland
; Oleg A. Odintsov, Moscow, 2024
;
; unsigned char wherex (void);
;
.export _wherex
.include "agat.inc"
_wherex:
lda CH
bit TATTR
bmi t64
lsr
t64:
ldx #$00
rts