From cf17b0b923aebfacaa2c981312b5195b58399cff Mon Sep 17 00:00:00 2001 From: Jali Date: Tue, 7 Oct 2025 21:22:21 +0200 Subject: [PATCH] Add debug messages --- src/sudoku.s | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sudoku.s b/src/sudoku.s index 4b2eb6a..48dcae3 100644 --- a/src/sudoku.s +++ b/src/sudoku.s @@ -43,7 +43,9 @@ START: MOVE P,[-PDLLEN,,PDL-1] ;Initialize the stack. MOVEI B,FNAME2 ;Store the second file name in B MOVEI C,FIELD ;Store the address of field in C PUSHJ P,IMPRTF ;Load the file - PUSHJ P,PFIELD ;Print thee loaded field. + MOVE A,[BPTR,,WELCOME] + PUSHJ P,PUTLN + PUSHJ P,PFIELD ;Print the loaded field. JRST DONE ;Jump to the end of the program.