Reverse code tweaks

This commit is contained in:
CrazyEttin 2022-10-07 23:03:18 +03:00
parent 89d02d72a5
commit b0a3e25712
1 changed files with 5 additions and 3 deletions

View File

@ -42,7 +42,8 @@ input: load r0, bfstrt
load r2, #1a
brneq r1, r2, chknul
;Halt
;Print a newline and halt
cleq r0, r0, newln
halt
;Read a character
@ -247,8 +248,9 @@ recv: load r1, fff9
;Check for input and incoming data
breq r0, r0, check
;Halt
noconn: halt
;Print a newline and halt
noconn: cleq r0, r0, newln
halt
;***