Many changes

This commit is contained in:
2023-09-10 20:53:10 +02:00
parent a1daa4c4b3
commit 0d3dfb5a37
12 changed files with 307 additions and 75 deletions

16
test/echo.mac Normal file
View File

@@ -0,0 +1,16 @@
rcsr = 177560
rbuf = 177562
xcsr = 177564
xbuf = 177566
.psect .txt
.title echo
start:
tstb @#rcsr
bmi start
mov @#rbuf,r1
xor r1,#40
mov r1,@#xbuf
br start
.byte 123
.end start