If you entered the example program above, you defined a capital A and placed it in the RAM location for ASCII decimal 65 (replacing the standard “A” ). You can now print out a
This is the result.
A A A A A A A A A A A A A
AAAAAAAAAAAAA
A A A A A A A A A A A A A
As you can see, both sets of characters (the original ROM characters that the printer normally uses and the
270.It is: <ESC> “%” n
If n is equal to 0, the normal ROM character set is selected (this is the default). If n is equal to 1, the
You may switch between character sets at any
After running the program above, if you select the user- defined character set and try to print other characters, the only one that will print is the capital A. Since no other characters are in the
In many cases, you will want to redefine only a few of the characters to suit your needs; the rest of the alphabet will work fine as it is. As you have seen, it is possible to switch back and forth at will between the normal character set and the user- defined character set. It is, however, rather inconvenient.
58