From f27b290b447c18e31a0f1064725ae7d0c59202f1 Mon Sep 17 00:00:00 2001 From: Anachronaut <75824887+RealBusinessAccount@users.noreply.github.com> Date: Sun, 27 Oct 2024 20:14:55 -0400 Subject: [PATCH] Update printHello.asm --- Programs/printHello.asm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Programs/printHello.asm b/Programs/printHello.asm index 720b1e6..3eefa65 100644 --- a/Programs/printHello.asm +++ b/Programs/printHello.asm @@ -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