From 123a73966f32c1d560c9dea083d4cf53ad45b47a Mon Sep 17 00:00:00 2001 From: Jali Date: Sun, 3 Aug 2025 14:02:08 +0200 Subject: [PATCH] Fix typos --- src/SUDOKU.ASM | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SUDOKU.ASM b/src/SUDOKU.ASM index 7e35006..a0c4168 100644 --- a/src/SUDOKU.ASM +++ b/src/SUDOKU.ASM @@ -11,7 +11,7 @@ Y=5 ; loops etc. ;Set up the stack P=17 PDLLEN==20 ;Size of the stack. -PDL BLOCK PDLLEN ;Reserve the stack memory. +PDL: BLOCK PDLLEN ;Reserve the stack memory. BPTR==440700 ;Define a byte pointer. CHTTYO==1 ;Define a channel for TTY output. @@ -21,7 +21,7 @@ START: MOVE P,[-PDLLEN,,PDL-1] ;Initialize the stack. .LOSE %LSFIL ;Gobble up error messages. MOVE A,[BPTR,,HELLO] ;Load A with a byte pointer to HELLO. JRST DONE ;Jump to the end of the program. -OUTSTR: HRLI A,BTPR ;Ensure, A is a byte pointer. +OUTSTR: HRLI A,BPTR ;Ensure, A is a byte pointer. OUT: ILDB B,A ;Load the next byte from A. JUMPE B,OUTEX ;Exit the routine, if all bytes are done. .IOT CHTTYO,B ;Print a character.