1 " BEGIN INCLUDE FILE ... prtseg.incl.alm
 2 "
 3 "
 4 "         This include file locates the software control switches used by code conversion
 5 "         in the per-printer structure.
 6 
 7           equ       ps.modes,19                   " offset in structure where modes live
 8           bool      ps.ovfl_off,200000            "   DU mask for overflow
 9           bool      ps.single,100000              "   DU mask for single spacing
10           equ       ps.cur_line,20                " offset of current line
11           equ       ps.max_line,21                " offset of maximum line
12           equ       ps.indent,22                  " offset of indentation
13           equ       ps.line_lth,23                " offset of line length
14           equ       ps.line_count,24              " offset of line count
15           equ       ps.page_count,25              " offset of page count
16           equ       ps.temp_indent,26             " offset of temporary indent.
17 
18 " END INCLUDE FILE ... prtseg.incl.alm