Architecture of the Wang 700 (PRELIMINARY)

Block Diagram

In the above diagram, fine lines represent single-bit (and serial) data paths, while thicker lines represent multiple bits of data in parallel (typically 4). Note, the hardware implements both parallel and serial paths, depending on registers and access operations.

Hardware Registers

The registers in the block diagram are explained here:

Microcode Execution Sequence

Microcode execution happens continuously, as long as the calculator has power. Each instruction contains the address of the next instruction, so there is no traditional "Instruction Counter" that increments. There is a "current instruction address" register, and two stack registers, used to control the flow of the microcode. In addition, certain keyboard conditions cause a hard-coded address to be forced into the current address register.

In normal operation, the current address is applied to the ROM and the resulting 43-bit word is latched into the instruction register. For all instructions, the "next address" field of the instruction is fed-back into the current address register, with the low-order 2 bits coming from a decoding of the condition address fields, JL and JH.

Microcode instruction execution sequence is terminated, and a new instruction address is forced, when certain keys are pressed. Because this is handled in hardware, these keys will immediately terminate any routine in progress and force the calculator to jump to the function programmed for that key.

The "shifted" functions S.M., INS, DEL, and B.S. were accessed by forcing both the Run and Learn buttons down together.

From tracing microcode, it seems that memory size is hard-coded. So, for example, 720C microcode could not run with less than 2Kx8 RAM.

Microcode Instruction Timing

The system clock source is an 8 MHz oscillator. This clock is sent to an 11-stage ring counter, providing the eleven timing signals P0 thru P10 (both true and inverted). These signals orchestrate the operation of the calculator. The instruction time is then 1.375uS or a rate of about 727,272 instructions per second.

The following table outlines various calculator actions relative to timing signals.

Here is some sample microcode

Microcode Instruction Format

Each microcode instruction is 43 bits long. The instruction fields are as follows:

The instruction fields have the following effects on the hardware.

The notation REG<n> refers to Bit "n" of register "REG".

Bit Assignments for I/O Ops

Memory Usage

The calculator memory was based on magnetic core memory technology. This means that reading memory is a destructive operation, clearing the location to all zero. This is used by the microcode in places to clear memory (registers) quickly, but most of the time the microcode must follow any memory read with a memory write in order to restore the contents.

All memory in the calculator is organized as 8-bit words. Memory addresses are byte-addresses, but the calculator interlaces the memory usage by upper (i.e. RA) and lower (i.e. RB) nibbles. Even numbered registers use the upper part of a range of 16 bytes, odd registers use the lower part. Program steps are not interlaced.

The fact that odd/even registers are interlaced in the same bytes of memory means that most of the time the microcode must follow a memory read with a memory write, even if a register is being cleared since only one nibble of the byte is being cleared and the other must be preserved.

Editor's Note: It is not known whether the 249th register (0x7cf - 0x7c0 upper) is an anomaly of the microcode or actually intended as a register. T.B.D. whether that memory gets used by the microcode for something else (e.g. temporary storage during certain operations).

The Program Stack is organized as five 12-bit values stored big-endian, with the low 11 bits being the memory address of the the program step that made the call (i.e. return must decrement this address for the next program code to execute) and the high bit is a flag indicating the mode which called the subroutine: 1 = Keyboard (stopped), 0 = Running Program. Address 0x7c0 lower is the high 4 bits of the "top of stack". Each time the stack is "pushed" the entire contents is copied/shifted right. When the stack is "popped" it is copied left. The stack is not guarded against overflow, with entries being pushed off the end and lost.

System State (0x7df - 0x7d0 upper, 0x7cf lower)
0x7cfDIR+100 (08)
0x7d0P.C. Hi
0x7d1P.C. Med
0x7d2P.C. Lo
0x7d3Prefix State
0x7d4
0x7d5Number Entry State
0x7d6Low nibble of direct command (if Prefix State is 08)
0x7d7Low nibble of I/O command (if Prefix State is 04)
0x7d8Extended Math State
0x7d9
0x7daother state 10
0x7db
0x7dc
0x7ddother state 13
0x7de
0x7df

Prefix State
00 = no prefix
04 = I/O, MARK
08 = Direct (incl 12 xx)
12 = SEARCH
01 = Running (OR'ed with above)
0x7cf lower: Aux State
08 = Direct+100 (any 12 xx prefix)
Number Entry State
00 = no entry
01 = mantissa, leading zero
02 = mantissa, non-zero
03 = exponent
04 = decimal, non-zero
05 = decimal, leading zero
06 = Set P.C.
Extended Math State
3210
Sign ? Quadrant

1
X- Y+
0
X+ Y+
2
X- Y-
3
X+ Y-

other state 10
3210
? state ? ?
other state 13
3210
? state ? ?

Display

The display is a "multiplexed" style using NIXIE tubes. This means that the display only appears to be static, it is actually continuously flickering, but at a higher rate than the human eye can discern. The display is only lit as long as the calculator is actively refreshing. If the calculator is busy doing something else, the display will go blank (from lack of refresh).

The microcode refreshes the display by sequentially loading each digit from memory, and pausing for about 431 cycles (almost 593 uS). This means the entire display (16 digits) is refreshed every 9.5 mS, or about 105 times a second. The display decoders are fed directly from the output latch of RAM (RA,RB) and the N address register. N contains the column (digit) number to enable, and the RAM latch contains the code for the digit to be displayed, and both must be kept static during the pause.

The displays do not consume a digit column for the decimal point. This means that the calculator must provide addition data to the display hardware. The machine state register (S) is used to select "fixed" or "floating" decimal for the X and Y displays, seaprately. When fixed decimal, the decimal point in column 0 is on. When floating decimal, the last three columns (exponent) are blank so the display expects column 15 refresh data to contain the decimal point position. This means that the decimal point is actually display after all the digits are displayed.

The display decodes digit values differently depending on the column. Column 0 is a "sign/dp" digit and will only display "+", "-", "." and blank. Column 13 is a "sign-only digit and will only display "+", "-", and blank. The decimal point does not consume a column, but is displayed either fixed on column 0 (for scientific notation) or for floating point, when columns 13, 14, and 15 are always blank, the hardware uses the value of the "digit" in column 15 as the decimal point selector. Both X and Y displays are refreshed simultaniously, and both independently select fixed or floating decimal point. The machine state register holds the bits (during refresh) for selecting fixed/floating for both X and Y displays.

The following are provided by the calculator during refresh:

The display hardware decodes the register contents without modification, other than selecting fixed or floating point. The display pattern is the same as the register pattern. This means the calculator does not need to keep a "formatted" copy of each display, it directly refreshes the actual register contents.

Cassette Tape

Most cassette storage of the era used audio modulation, similar to the "musical tones" of a modem, and used standard audio cassette tapes. But the Wang 700 used magnetic saturation like mainframe computer tape drives. It did work on audio cassettes, but Wang recommended high quality "metal" tape.

Because magnetic media only works when there are changes in magnetic fields, the encoding had to ensure that the magnetic field changed frequently. This means that, for example, a long string of zeroes must not result in a long period of blank tape. The data encoding used a clock with data pulse between each clock. A parity bit was added every 8 data bits, to help detect errors.

The timing of each bit was precise, because the tape read code had to be able to stay synchronized without saving state information or doing much processing. Each unit of output was 385 cycles (data bit width 1550), and each program (tape image) was preceded by a 524,290 cycle (approximately 0.67 second) blank gap (no magnetic field transitions).

During read, the calculator waits for the "bit start" transition, then delays 962 cycles before sampling again. If the sample reveals that there was a "1" pulse, then the bit is considered a "1", otherwise it is "0". From this stream, the calculator assembles bytes and checks parity, loading data into memory.

Here is an example of writing 09 00 to tape and reading it back:

The code 09 00 is encoded bit by bit, and an odd parity bit added after. Each bit is encoded into the tape stream by converting "1" into "1010" and "0" into "1000". There is effectively a clock always present with optional data bit pulse between any two adjacent clock pulses. The resulting stream is fed to the record head and produces alternating segments of positive and negative magnetic fields on the tape.

During read, the changes between positive and negative magnetic fields show up as "blips" in the signal from the tape read head. The positive blips and negative blips are fed through a transister "one-shot" that effectively reproduces the original record head data stream.

The calculator monitors the signal from the one-shot. The first "1" it sees indicates the beginning of a clock pulse. It then delays 962 cycles and checks the signal again. If it is still "1" (was actually re-triggered by a second pulse) then the data bit is interpreted to be a "1". Otherwise, the data bit is interpreted to be "0". These bits are assembled into an 8-bit word and a parity bit, which is then checked for odd parity and, if correct, the data word is stored in memory.

A parity error will cause the calculator to turn on the Mach Error flag (ERR) and stop processing the tape.

Other problems with the tape will generally cause the calculator to "hang" with a blank display. Pressing PRIME is usually required in order to recover.

The calculator reads/writes the tape at about 519 bits/second. Assuming standard tape speed, this makes a tape density of a little less than 300 bpi (compare to mainframe "9-track" tapes which were 800 or 1600 bpi, and later 6250 bpi). The smallest common audio cassette was 15 minutes (C15) which would hold an overwhelming 50,000 program steps (on both sides) or 26 complete copies of the calculator memory (a program rarely consumed all of memory). For this reason, Wang data cassettes were much shorter, typically only having a few minutes of tape.

Expansion (Peripheral) Ports

Note: Assumtion at this point is that the Wang 700 pripherals operated identically to the Wang 600. The following is from the Wang 600:

CN-24

The CN-24 (Centronix 24-pin connector) is an output-only port, used primarily for printers and plotters. Only 6 bits of data output are provided. The pin-out is:

CN-36

The CN-36 (Centronix 36-pin connector) is bi-directional and multi-device (daisy-chained). The pin-out is:

The connector supplies the "always on" signals from AL<0:3> and D<0:3>, which are essentially display refresh data. This supports a device known as "Classroom Display" which was a large-digit remote copy of the main display.

The signals from IOB<0:2> are used to select devices on the daisy-chain. The following codes are used:

Devices 100 and 101 (110 and 111)

The "Group I/O" peripherals were fairly limited. The devices generally responded to a byte code from the calculator, and then asserted Learn (and strobed PRIME as needed) and pushed program steps to the calculator. The devices and/or operators orchestrated the interaction.

The protocol is as follows (GROUP y xx xx command):

Note: The calculator cannot tell the difference between codes sent by device and codes entered from keyboard.
Device 01X

The protocol is as follows (I/O 13 xx command):

If the result code is not 00, the calculator sets OFL (Prog Error).

Each byte sent from device is "seen" by the calculator as keyboard input, and is acknowledged by the act of reading that "keyboard code".

Each byte sent from the calculator is acknowledged by the device by sending a dummy "keyboard code".

The "I/O 13 xx" devices may not have been limited to the Model 730 Fixed/Removable Disk. The protocol is a block input/output of program steps, but could be used for (extended) register data as well. Sufficiently sophisticated code in ROM could allow all of RAM to be used for registers, and/or implement a simple "operating system" that demand-paged program and register data in RAM.