To find out whether your system is an
10 P’OR X=160 TO 254
20 L,PRINT CHR$( X> ;
30 NEXT X
If you get italic characters when you RUN this, you are using an
If you have a
The problems that are associated with
•Limitations on width in graphics mode
•Inability to use the top pin for graphics mode
Remember that the best solution usually is to use an interface that can send eight bits to the printer.
Solutions for Specific SystemsThe next four subsections illustrate dealing with interface puzzles on four types of computers.
Applesoft BASIC solutionsApplesoft BASIC does not use PRINT to send data to the screen and LPRINT to send data to the printer as MBASIC does. Therefore, put an PR#1 at the beginning of a program and change all instances of LPRINT to PRINT.
If one of our programs contains an INPUT statement or a PRINT statement, there will be a message that should go to the screen before anything is sent to the printer. In these programs, leave the first lines as they are and after the INPUT and/or PRINT statements, add a line that states PR#1; then change all the instances of LPRINT to PRINT and put a line that states PR#0 at the end of the program.