From 8ee5c12318ce5b5330881a345b8c26b8a75ebfb9 Mon Sep 17 00:00:00 2001 From: Jali Date: Sun, 10 Aug 2025 00:42:55 +0200 Subject: [PATCH] Do not print HELLO --- src/SUDOKU.MID | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/SUDOKU.MID b/src/SUDOKU.MID index 62e6f4f..030c0fd 100644 --- a/src/SUDOKU.MID +++ b/src/SUDOKU.MID @@ -33,8 +33,6 @@ START: MOVE P,[-PDLLEN,,PDL-1] ;Initialize the stack. MOVEI A,001 ;Initialize the print flag MOVEM A,PFLAGS ;to print SIXBIT PUSHJ P,GETJCL ;Read the command line. - MOVE A,[BPTR,,HELLO] ;Load A with a byte pointer to HELLO. - PUSHJ P,OUTSTR ;Print the out string. MOVE A,[BPTR,,FNAME1] ;Read the parameter. PUSHJ P,PUTLN ;Print the file name MOVE A,[BPTR,,FNAME2] ;Print the second file name. @@ -96,5 +94,4 @@ PUTLN: PUSHJ P,OUTSTR ;Calls the OUTSTR subroutine POPJ P, ;before returning. DONE: .LOGOUT 2, ;Exit point for the program. -HELLO: ASCIZ /HELLO / ;Define example string. END START