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

18 lines
219 B
ArmAsm

;
; Oleg A. Odintsov, Moscow, 2024
;
; void __fastcall__ cclear (unsigned char length);
;
.export _cclear
.import COUT
.include "zeropage.inc"
_cclear:
sta ptr1
lda #$A0
next: jsr COUT
dec ptr1
bne next
rts