Difference between revisions of "PDP-11 architecture"

From Computer History Wiki
Jump to: navigation, search
(cat)
m (added pdp-11 nav template)
Line 21: Line 21:
 
|7      || Index deferred              || @X(R)        || (R) + X is the address of the address
 
|7      || Index deferred              || @X(R)        || (R) + X is the address of the address
 
|}
 
|}
 +
 +
{{PDP-11}}
  
 
[[Category: DEC architectures]]
 
[[Category: DEC architectures]]

Revision as of 20:03, 16 May 2007

The PDP-11 is a 16-bit minicomputer designed by DEC.

Addressing modes

Mode Name Symbolic Description
0 Register R (R) is the operand
1 Register deferred (R) (R) contains address of operand
2 Auto-increment (R)+ (R) is the address; (R) is incremented by 1 or 2, in case of byte or word instructions.
3 Auto-increment deferred @(R)+ (R) is the address of the address; (R) is incremented by 2
4 Auto-decrement (R)- (R) is decremented by 1 or 2, in case of byte or word instructions; R is address.
5 Auto-decrement deferred @(R)- (R) is decremented by two; (R) is the address of the address.
6 Index X(R) (R) + X is the address.
7 Index deferred @X(R) (R) + X is the address of the address