Open In App

VAX Architecture

Last Updated : 22 Mar, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

VAX Architecture was designed to increase the compatibility by improving the hardware of the earlier designed machines. As VAX architecture is an example of the CISC (Complex Instruction Set Computers) therefore there are large and complicated instruction sets used in the system.

  1. Memory: VAX architecture consists of 8- bit bytes memory. Two consecutive bytes form a word, four bytes form a longword, eight bytes form a quadword, sixteen bytes form an octaword. All VAX programs operates on Virtual Address Space (232 bytes). The Virtual Address Space is divided into two spaces:
    • System Space
    • Process Space
  2. Registers: VAX architecture have 16 general-purpose registers from R0 to R15. Some of these registers have special name and use. 
     
     
AP - Argument Pointer
FP - Frame Pointer
SP - Stack Pointer
PC - Program Counter 
  1. Data Formats:
    • Integers are stored as Binary numbers in byte, word, longword, quadword or octaword.
    • Characters are represented using 8-bit ASCII codes.
    • Floating points are represented using four different floating-point formats of length ranging from 4 to 16 bytes.
  2. Instruction Formats: VAX machine architecture use a variable-length instruction format. Each instruction consists of an operand code (1 or 2 bytes) followed by up to six operand specifier, depending on the type of instruction.
  3. Addressing Modes: VAX architecture use a large number of addressing modes. There are number of modes available such as register mode, register deferred mode, autoincrement and autodecrement mode. There are also base relative addressing modes, with displacement fields of different lengths. Program counter relative mode is also used to deal with PC register.
  4. Instruction Set: In VAX systems instruction mnemonics are formed by combining following elements:
    • Prefix: A Prefix specifies the type of operation.
    • Suffix: A Suffix specifies the data type of the operands.
    • Modifier: A modifier specifies the number of operand involved.
  5. Input and Output: I/O device controller are used to implement I/O on VAX architecture. Each controller has a set of control/status. The portion of the space into which the device controller register are mapped is called I/O space.

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads