(* SAC Basic I/O System definition module. *) DEFINITION MODULE SACBIOS; FROM MASELEM IMPORT GAMMAINT; PROCEDURE CWRIT2(C1,C2: GAMMAINT); (*Character write, 2 characters. C1 and C2 are sequentially transmitted to the output stream using CWRITE.*) PROCEDURE CWRIT3(C1,C2,C3: GAMMAINT); (*Character write, 3 characters. C1, C2 and C3 are sequentially transmitted to the output stream using CWRITE.*) PROCEDURE CWRIT4(C1,C2,C3,C4: GAMMAINT); (*Character write, 4 characters. C1, C2, C3, and C4 are sequentially transmitted to the output stream using CWRITE.*) PROCEDURE CWRIT5(C1,C2,C3,C4,C5: GAMMAINT); (*Character write, 5 characters. C1, C2, C3, C4 and C5 are sequentially transmitted to the output stream using CWRITE.*) PROCEDURE CWRIT6(C1,C2,C3,C4,C5,C6: GAMMAINT); (*Character write, 6 characters. C1, C2, C3, C4, C5 and C6 are sequentially transmitted to the output stream using CWRITE.*) END SACBIOS.