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

15 lines
192 B
ArmAsm

;
; Oleg A. Odintsov, Moscow, 2024
;
; COUT routine
;
.export COUT
.include "agat.inc"
COUT:
cmp #$10
bpl out
ora #$80
out: jmp (VCOUT)