Do not print HELLO

This commit is contained in:
2025-08-10 00:42:55 +02:00
parent a0808e4aac
commit 8ee5c12318

View File

@@ -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