The 8085 microprocessor utilizes RST (Restart) instructions, which are similar to CALL instructions but jump to predefined memory locations. These locations are called vector addresses.
The vector address for an RST n instruction is calculated using the formula: Vector Address = n * 8 (where the address is in decimal).
The RST6 instruction corresponds to the value n=6.
$ n \times 8 = 6 \times 8 = 48_{10} $
$ 48_{10} = 30_{16} $
Therefore, the RST6 instruction transfers program execution to the memory location 30H.
| List - I (Addressing Modes) | List - II (Instruction) |
| A. Immediate Addressing | I. LDAX B |
| B. Register Addressing | II. OUT 01H |
| C. Direct Addressing | III. MVI B, 37H |
| D. Indirect Addressing | IV. MOV A, B |
| List - I | List - II |
| (Memory) | (Characteristic) |
| A. ROM | I. Volatile, Fast, Expensive |
| B. EPROM | II. UV erasable |
| C. EEPROM | III. Electrically erasable |
| D. SRAM | IV. Non-Volatile, permanent data |
| List - I | List - II |
| (Bus/Logic) | (Function/Characteristic) |
| A. Address bus | I. Carries read/write signals, timing signals, and interrupt signals |
| B. Data bus | II. A three-state output that can be high, low, or high-impedance |
| C. Control bus | III. Unidirectional lines used by CPU to point to a memory location or I/O device |
| D. Tristate logic | IV. Bidirectional lines used for transferring data between the CPU and memory |