From a4b20bb3901889f860368c33b92754b3969badc4 Mon Sep 17 00:00:00 2001 From: Jali Date: Tue, 18 Nov 2025 22:00:39 +0100 Subject: [PATCH] Remove SIXBIT conversion from GETJCL --- src/sudoku.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sudoku.s b/src/sudoku.s index c1bbbbf..edba133 100644 --- a/src/sudoku.s +++ b/src/sudoku.s @@ -54,9 +54,9 @@ GETJCL: PUSH P,A ;Save the register A. .BREAK 12,[..RJCL,,JCL] ;Request the JCL. MOVE A,[BPTR,,JCL] ;Load the command parameters into A. MOVE B,[BPTR,,FNAME1] ;Pointer to the first file name. - PUSHJ P,TOSIXB ;Transfer the first word into FNAME1 + ;PUSHJ P,TOSIXB ;Transfer the first word into FNAME1 MOVE B,[BPTR,,FNAME2] ;Pointer to the second file name. - PUSHJ P,TOSIXB ;Transfer the second word into FNAME2 + ;PUSHJ P,TOSIXB ;Transfer the second word into FNAME2 POP P,B ;Restore the B register. POP P,A ;Restore the A register. POPJ P, ;Return from routine.