From 9f97c094fbf82b3542073ac969927db6f05d7e56 Mon Sep 17 00:00:00 2001 From: Jali Date: Sun, 21 Sep 2025 21:59:39 +0200 Subject: [PATCH] Fix a few typos --- src/SUDOKU.MID | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SUDOKU.MID b/src/SUDOKU.MID index 2240c9b..0720c13 100644 --- a/src/SUDOKU.MID +++ b/src/SUDOKU.MID @@ -12,7 +12,7 @@ P=17 ;Define P as the stack pointer. PDLLEN==30 ;Set the size of the stack to 30 words. PDL: BLOCK PDLLEN ;Reserve the stack memory -BPTR==440700 ;Define a byte pointer. +BPTR==440700 ;Define a byte pointer, easier to write... CHTTYO==1 ;Define a channel for TTY output. CHDSKI==2 ;Read channel for disk input. @@ -41,7 +41,7 @@ START: MOVE P,[-PDLLEN,,PDL-1] ;Initialize the stack. PUSHJ P,OUTSTR MOVEI A,FNAME1 ;Store the first file name in A MOVEI B,FNAME2 ;Store the second file name in B - MOVEI C.FIELD ;Store the address of field in C + MOVEI C,FIELD ;Store the address of field in C PUSHJ P,IMPRTF ;Load the file JRST DONE ;Jump to the end of the program.