Encyclopedia > PDP-11

  Article Content

PDP-11

The PDP-11 was a 16-bit minicomputer sold by DEC in the late 1970s and early 1980s. The PDP-11 was a successor to DEC's PDP-8 computer in the PDP series of computers. It has several uniquely innovative features, and its simple but effective design led to it becoming one of the most imitated computers in history. The success of the PDP-11 inspired the design of a number of similar successful CPU architectures, such as the Motorola 68000, as well as DEC's successor to the PDP-11, the VAX.

First, the PDP-11 was designed to be produced in a factory by semiskilled labor. All of the dimensions of its pieces were relatively noncritical. All parts of the computer chassis were constructed from injection-molded plastic, or bent steel rod (lighter than sheet metal). It used a push-bonded backplane. That is, the printed circuit board plugged into a backplane connector. The backplane connector had terminals that could be connected by pushing wires into them. The terminal would cut the insulation around the wire and bite into the wire to for a gas-tight (i.e. corrosion-proof, therefore reliable) connection. The connector blocks were very similar to telephone connection blocks. The case was injection-molded plastic that snapped over the steel-rod chassis.

The CPU's microcode included a debugger that directly communicated to a standard RS-232 terminal. This was inovative because the microcode is the part of the irreducible guts of the computer, a critical part of the control unit. If it doesn't work, there is no computer. The debugger provided a way to examine the computer's registers, memory and input and output devices. Thus, if the CPU worked at all, it was possible to examine and correct the computer's internal state. The built-in debugger avoided the expense and inconvenience of a switch array, which was then the typical way to enter digital data into a near-dead computer. The microcode also included a generic bootstrap, to which all DEC disk drives were compatible. The bootstrap is the tiny piece of computer program that loads the operating system or other starting software into the computer's memory from an input device.

These two innovations meant that most of the time, the computer just worked. If it did not boot from its big disk, it would boot from its floppy. If the hardware worked at all, it talked to you through a terminal in a familiar way.

The instruction set was one of the most orthogonal ever designed. This means that each operation, i.e. addition, subtraction, etc., was cleanly and precisely separated from the method to locate the operands. This property is called "orthogonality" in an allusion to linear mathematics[?]. This made the computer much easier to program because a programmer could memorize the operations, and the methods of accessing operands. He could then predict that any access method (or, "addressing mode") would work with any operation. He did not have to learn a list of exceptions or special cases in which an operation had a special or restricted set of addressing modes. In some logical sense, the set of addressing modes provided one "basis" and the set of operations provided another. Each is instruction separated into two six-bit address modes and a four-bit op-code. All op-codes operated with any combination of address modes. There were 8 general-purpose registers numbered 0 through 7. Any register could be used for most purposes, although register 6 was elected as the stack pointer for subroutines, and register 7 was used as Program Counter.

In the most radical departure from other, earlier computers, the PDP-11 had no dedicated bus for input/output. It had only a memory bus. All input and output devices were mapped to addresses in memory. The interrupt and bus was intentionally designed to be as simple as possible, while assuring that no event in an interrupt sequence could be missed. A device would request an interrupt by asserting an input into an interrupt daisy chain. A daisy chain is a sequence of logic gates arranged in series to prioritize events. Generally the first logic gate is for the highest priority. The daisy chain order established the priority of the device. When the CPU responded, the device would place its vector (interrupt number) on the bus. The CPU would then load the status register and starting address from the vector table, and temporarily disable interrupts. The CPU would multiply the vector by a power of two (usually just 2), and then fetch a number from that address. The address would be the starting address of code to run for the interrupt. The interrupt code would then service the device, and in the process, write to the interrupting device to turn off the interrupt signal. Finally, a special RTI (return from interrupt) instruction would enable interrupts on all devices. Note that this process prevents loss of interrupts. At every stage, if the interrupt is not serviced, it remains in place, to be sensed on the next cycle. If a sequence is erroneously started, the CPU would time out, generating a spurious interrupt. The spurious interrupt would warn users of bad hardware.

The address modes included:

1. Immediate - the value is from the code
2. Register-direct - the value is to or from a register
3. Reigster-indirect - register is used as a memory address to read or write
4. Register indirect with predecrement - as in 3, but it's decremented first.
5. Register indirect with post-increment - as in 3, but it's incremented afterwards.
6. Register indirect with an offset - as in 3, but an offset is added before using it.
7. Memory direct - an address in memory is accessed.
[I seem to remember that the 8th was some sort of indexed access, but I can't remember.]

The instructions were totally generic: add, adc (add with carry), sub, subb (subtract with borrow), mov (moves from anywhere, to anywhere), and, or, not, jmp, jsr, jcc: where cc was some test of the bits in the status register.

The status register included bits for Carry, Zero, Overflow and Negative.

Operating Systems

Several operating systems were available for the PDP-11

Clones

Several clones were also produced including:

Also see PDP-11s behind the Iron Curtain (http://www.village.org/pdp11/faq.pages/Soviet11s) and Museum of the USSR Computers history (http://www.bashedu.ru/konkurs/tarhov/english/index_e.htm).



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
Jordanes

... - Wikipedia <<Up     Contents Jordanes Jordanes or Jordanis was a 6th century historian. He was an Ostrogoth and was a notary of Gothic ...

 
 
 
This page was created in 38.9 ms