Selecting character Font A and Double-width
150 PRINT #1, CHR$(27); ”!” ;CHR$(48);
160 PRINT #1, ”ABCDEFGHIJK” ;CHR$(10);
TM-T60
Font A (normal)
Font A (double-width)
: 32 characters per line.
: 16 characters per line.
Resetting the style to Normal.
170 PRINT #1, CHR$(27); ”!” ;CHR$(O);
180 PRINT #l, ”ABCDEFGHIJK” ;CHR$(10);
170 sets Font A to Normal. 180 sets the characters for printing.
Selecting the character code table
190
FOR I=240
TO 255
200
PRINT
#1, CHR$(I);
210
NEXT
I
220
’
230 PRINT #1, CHR$(27); ”t” ;CHR$(1);
240
’
250
FOR I=240
TO 255
260
PRINT
#1, CHR$(I);
270
NEXT
I
Page 0 characters, 190~210.
Page 1 characters, 250~270.
Refer to ESC t n.
-54-