Specifications

Revision C 16/01/96
Chapter 6 " IBM Proprinter XL " - 6
Escape
ESC (27) <1Bh>
The ESC control code (ASCII 27) marks the start of an escape sequence.
LPRINT CHR$(27);
Space
SP (32) <20h>
The SP control code (ASCII 32) moves the current print position one space to the right.
LPRINT CHR$(32);
Backspace
BS (08) <08h>
The BS control code (ASCII 8) moves the current print position one space to the left.
LPRINT CHR$(8);
Line feed
LF (10) <0Ah>
The LF control code (ASCII 10) moves the current print position down one line.
LPRINT CHR$(10);
Form feed
FF (12) <0Ch>
The FF control code (ASCII 12) ejects the current page (unless it is blank) and moves the
current print position to the top of the next page.
If the current page is blank this control code has no effect.
LPRINT CHR$(12);