If you want to put dots in the bottom row, change the number in line 190 from 128 to 0. Then the usable rows will be as shown in Figure

7-5.

Figure 7-5. Using the bottom eight rows

Definition program 2

Once the character looks right, type in the next program. The program as listed creates the symbol for Mercury, but you can use it for any character you create if you make one or two changes explained after the program listing.

NEW

100LPRINT CHR$(27) ":"CHR$(0)CHR$(0)CHR$(0);110LPRINT CHR$(27)"%"CHR$(l)CHR$(0);120LPRINT CHR$(27)"&"CHR$(0)CHR$(60)CHR$(60);130LPRINT cHR$(128);140FOR X=1 TO 9150READ R160LPRINT CHR$(R);: NEXT X170LPRINT CHR$(0)CHR$(0);200DATA 0,80,170,0,47,0,170,80,0300END

7-6