From f8848adf8c3deec4ea1bafa2ec07d79a28d956c7 Mon Sep 17 00:00:00 2001 From: Anachronaut <75824887+RealBusinessAccount@users.noreply.github.com> Date: Wed, 30 Oct 2024 21:54:41 -0400 Subject: [PATCH] Update SplitBit Assembler Manual.md --- SplitBit Assembler Manual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SplitBit Assembler Manual.md b/SplitBit Assembler Manual.md index cab306f..3cfb569 100644 --- a/SplitBit Assembler Manual.md +++ b/SplitBit Assembler Manual.md @@ -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.