
93
Here is how the printer’s macro works. You dejlne a macro by telling the printer what normal control codes are to be included in the macro. Then you can use the macro any time that you want and the printer will do all the things that you included in the macro definition. You can include up to 16 codes in a single ‘macro. You can even use the macro to store a frequently used word or phrase. There are two control codes for the macro: one to define it, and one to use it. They are given in the Table
| Table | |
| Macro instruction commands | |
Function | Control code | |
Definemacro | (ESC) “+” ... (codesyou include).. | |
CHR$(30) | ||
I.Jsemacro | ||
l(13SC”j““+” CHRM1) |
To see how this works we can build a macro that will reset the printing style to normal, no matter what style it may be to start with. The following program will define a macro to do this.
10 LPRINT CHR$(27) ; “+”; | 1Start macro |
20LPRINT CHR.$(27) ; “h”; CHR$([”l) : ‘Big character off
30LPRINTCHR$(27) ;” !”: CHRS(O) : Select normal pica
AO LPRINT CHR$(27) ; “T”: | ‘Super & subscripts |
off |
|
50LPRINT CHR$(27) ; “a”; CHRS(0) ; ‘
60 LPRINT CHR$(30) | ‘ Znd rirdcro |
def i r~i |
|
As the comments in the program shown, we started to define the macro in line 10. Line 20 cancels big character printing. Line 30 sets normal pica, and this command also cancels propor- tional pitch, condensed print, expanded print, boldface, em- phasized, italics, and underlining. Line 40 cancels superscripts and subscripts, and line 50 sets
Now that you have defined a macro, let’s see how to use it.