Update SplitBit Assembler Manual.md

This commit is contained in:
Anachronaut
2024-10-30 21:54:41 -04:00
committed by GitHub
parent f0d4a9b0f3
commit f8848adf8c
+1 -1
View File
@@ -45,7 +45,7 @@ start: ; By uninforced convention, Program Labels start with a lowe
CALL printString ; Call the string printing subroutine.
HALT ; End the program.
; This is a reusable subroutine that could be includedd in other programs.
; This is a reusable subroutine that could be included in other programs.
printString: ; Expects Data Pointer to be set to the beginning of the string to be printed.
LDA ; Move the first character of the string into A.
BRA printDone ; If A is NULL, the string is finished, so return.