C O N F I D E N T I A L
Paper roll
Character commands ESC t
Ver. 4.0
p. 1121
[Note]
■
The alphanumeric characters (20H (decimal 32) to 7FH (decimal 127)) are the same for each
page. The extended characters (80H (decimal 128) to FFH (decimal 255)) are different for
each page.
[Model-dependent variations]
None
Program Example for all printers
Print Sample
PRINT #1, CHR$(&H1B);"t";CHR$(0);
←
Select page 0
GOSUB printing
PRINT #1, CHR$(&H1B);"t";CHR$(1);
←
Select page 1
GOSUB printing
END
printing:
FOR i=&H20 TO &H7F
PRINT #1, CHR$(i);
NEXT i
PRINT #1, CHR$(&HA);
FOR i=&H80 TO &HFF
PRINT #1, CHR$(i);
NEXT i
PRINT #1, CHR$(&HA);
RETURN
Page 0
Page 1