Update printHello.asm

This commit is contained in:
Anachronaut
2024-10-27 20:14:55 -04:00
committed by GitHub
parent 91be7eb217
commit f27b290b44
+5 -5
View File
@@ -8,11 +8,11 @@
#Include print.asm
#Program
Start:
SETD myString ; Set the Data Pointer to the string we want to print.
CALL printString ; Call the subroutine.
CALL lineFeed ; Call the linefeed subroutine.
HALT ; Stop the CPU.
Start:
SETD myString ; Set the Data Pointer to the string we want to print.
CALL printString ; Call the subroutine.
CALL lineFeed ; Call the linefeed subroutine.
HALT ; Stop the CPU.
#Data