This commit is contained in:
zanostro 2025-11-11 11:03:46 +01:00
parent 3332b2971b
commit 483a16c194
6 changed files with 122 additions and 1 deletions

26
vhod_izhod/print.asm Normal file
View file

@ -0,0 +1,26 @@
.code
print START 0
CLEAR X
loop LDA txt, X
COMP NULL
JEQ halt
WD #AA
halt J halt
.data
txt BYTE C'SIC/XE'
NULL BYTE 0
textend EQU *
textlen EQU textend- text -1
END print