Display program

From Computer History Wiki
Revision as of 18:42, 25 December 2018 by Jnc (talk | contribs) (An acceptable start...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

A display program is a set of instructions for a vector graphics unit, telling it what to show on the display. The instructions are stored in memory, often the system's main memory.

Tyical instructions are 'display a point' (at a given location), 'display a line' (from one point to another), etc. For display systems with a character generator, there will be instructions to display characters or strings.

There is also usually a jump instruction, so that the display can continually refresh, by jumping back to the start of the display program. That also allows the display program to be built up out of smaller sections. Conditional branches are not usually provided, however.