1 Address

Duration: 3 min

This video lesson is available to enrolled students.

Enroll to watch — ISRO Scientist/Engineer 'SC'

AI Summary

An AI-generated summary of this video lecture.

This lecture introduces the architecture of 1-address instructions, a fundamental concept in computer organization. The instructor explains that these instructions rely on an implied accumulator (AC) register to perform data manipulation, meaning only one explicit address is needed in the instruction format. The example $X = (A + B) * (C + D)$ demonstrates decomposing expressions into machine operations. It highlights the role of the AC register in holding operands and results throughout the execution process. It covers the translation of high-level math to low-level code.

Chapters

  1. 0:00 2:00 00:00-02:00

    The session begins by defining the structure of a 1-address instruction, showing a table with "Opcode" and "Operand1". The model assumes the AC holds the result even for multiplication. The core example $X = (A + B) * (C + D)$ is introduced. The instructor breaks down the first phase: calculating $(A + B)$. This involves `LOAD A` to move memory content A into the AC (`AC <- M[A]`), followed by `ADD B` to add memory content B to the AC (`AC <- AC + M[B]`). Finally, `STORE T` saves this intermediate sum into a temporary memory location T (`M[T] <- AC`), preserving it for the next stage of calculation. The instructor emphasizes that the AC is the central register.

  2. 2:00 3:12 02:00-03:12

    The explanation continues with the second phase of the expression. The instructor shows `LOAD C` to load the next operand into the AC (`AC <- M[C]`), followed by `ADD D` to compute the sum `(C + D)` (`AC <- AC + M[D]`). The critical step `MUL T` is then executed, where the current AC value (C+D) is multiplied by the value stored in T (A+B), updating the AC (`AC <- AC * M[T]`). The final instruction `STORE X` moves the result from the AC to the memory location X (`M[X] <- AC`). The instructor underlines the correspondence between the equation terms and the assembly lines to reinforce the logic. This sequence effectively computes the product of two sums.

The video provides a clear, step-by-step translation of a mathematical expression into assembly code using a 1-address machine model. By breaking the expression into sub-expressions and utilizing a temporary variable 'T', the instructor demonstrates how the accumulator facilitates sequential processing. This approach simplifies the instruction set architecture but requires the programmer to manage the flow of data through the AC and memory carefully.