Input Data Control Bit 8 = 1 Input Data Control Bit 8 = 0

Input Data Control Bit 8 unchanged

ESC > ESC = ESC #

Data Structure

ASCII

ESC

">"

set bit 8 = 1

 

hex.

1B

3E

 

 

dec.

27

62

 

 

ASCII

ESC

"="

set bit 8 = 0

 

hex.

1B

3D

 

 

dec.

27

61

 

 

ASCII

ESC "#"

Removing the settings set for Bit 8 (MSB, most significant bit),

 

hex.

1B

23

which were set with the use of either ESC = or ESC >

 

dec.

27

35

 

Example

10 REM

 

input data control

20LPRINT CHR$(27);"#";

30GOSUB 90

40LPRINT CHR$(27);">";

50GOSUB 90

60LPRINT CHR$(27);"=";

70GOSUB 90

80END

90FOR I=97 TO 103:LPRINT CHR$(I);:NEXT I

100FOR I=161 TO 167:LPRINT CHR$(I);:NEXT I

110LPRINT LPRINT

120RETURN

Miscellaneous 107

Page 190
Image 190
Tally Genicom Matrix Printer manual Esc Esc = Esc #, Ascii ESC