
There are two types of problems that you who own Apple II computers will need to address. The first is that the Apple II is an
The printer interface card furnished with the Apple II computer only passes seven bits to the
You can POKE codes to memory as discussed above, you can write your own printer driver, or you can avoid the types of programs that require eight bits. A routine to POKE codes to the memory of an Apple II Plus is given in the POKEing codes subsection.
The Apple II uses CHR$(9) to “initialize” the printer. This code and the following character or characters are intercepted by the printer interface card and used to change modes. You can divert all output to the printer instead of to the screen by sending the following line to the printer:
P R # l
P R I N T C H R $ ( 9 ) “80N”
Then type anything, followed by RETURN.
The CHRS(9)“80N” code directs all subsequent output to the printer, up to 80 characters per row. You can cancel this by typing:
PRINT CHR$( 9 > ” I ” | or PR#O |
The problem is that the