This page describes the instructions on the Eclipse that move data from one place to another. This includes memory- to- memory and memory- to- AC and vice- versa. Other pages describe:
  Since the Data General Eclipse operates primarily as a load/store machine it's fairly easy to lunp all the data movement instructions into a single basic class, which is what I've done here. The instructions listed here are the only ones which manipulate main memory directly, and most do so using a fairly simple addressing scheme. The way the Eclipse addresses memory was covered in detail in the Introduction to the machine.
  The basic memory- to- AC (and vice- versa) instructions in this class have a common format:
I /---------- Displacement ----------\ / \ / \ +---+---+---+---+---+---+---+---+---+---+----+----+----+----+----+----+ | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | +---+---+---+---+---+---+---+---+---+---+----+----+----+----+----+----+ \ / \ / \--- Function ---/ Index
  In general, instructions will be presented by their assembler mnemonics, followed by a short discussion of the instruction's function.
Accumulator Index / \ / \ +---+---+---+---+---+---+---+---+---+---+----+----+----+----+----+----+ | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | +---+---+---+---+---+---+---+---+---+---+----+----+----+----+----+----+ \ / \ / \ / \ 0 0 1 / I \---------- Displacement -----------/
Accumulator Index / \ / \ +---+---+---+---+---+---+---+---+---+---+----+----+----+----+----+----+ | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | +---+---+---+---+---+---+---+---+---+---+----+----+----+----+----+----+ \ / \ / \ / \ 0 1 0 / I \---------- Displacement -----------/
I /---------- Displacement ----------\ / \ / \ +---+---+---+---+---+---+---+---+---+---+----+----+----+----+----+----+ | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | +---+---+---+---+---+---+---+---+---+---+----+----+----+----+----+----+ \ / \ / \ 0 0 0 1 0 / Index
I /---------- Displacement ----------\ / \ / \ +---+---+---+---+---+---+---+---+---+---+----+----+----+----+----+----+ | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | +---+---+---+---+---+---+---+---+---+---+----+----+----+----+----+----+ \ / \ / \ 0 0 0 1 1 / Index
  This page described the Load/Store instructions of the Data General Nova minicomputer. Other pages describe: