Chapter 7
Using the Hex Dump Feature
The
The hex dump feature is turned on by holding down both the LF and FF buttons while you turn the printer on. To turn it off simply turn the printer off and back on again.
When debugging a system, a good place to start is to attempt to print all the ASCII codes to see which ones don’t work correct- ly. If you are using BASIC the following program will do the trick:
10 FOR X=0 TO 255
20 LPRINT CHR$( X);
30 NEXT X
A perfect printout using the hex dump feature will look like Figure
Figure
87