CS Notes

Recent writing

  • VLAN

    Aug 29, 2025

    • networking
  • End-to-End Service Access Troubleshooting

    Aug 29, 2025

    • networking
  • File System Link

    Aug 29, 2025

    • OS
    • bash

See 642 more →

👋🏻 Join My Telegram channel!


I share real-world lessons from building scalable systems at Binance, and running mission-critical cloud ops at GovTech and Singapore Air Force. No fluff, just practical takeaways, hard-earned fixes, and deep dives that matter.

Home

❯

Computer Organisation

❯

Instruction Set Architecture (ISA)

❯

ISA Addressing Mode

ISA Addressing Mode

75 words, 1 min read
Last updated on Sep 03, 2024
🌟 Edit This Page!   🗓️ History

  • computer_organisation
Xinyang YU

Abstract


  • Ways to specify an Instruction Operand in an assembly language

Register Addressing Mode


  • Instruction Operand is in a Register (add $t1, $t2, $t3)

Immediate Addressing Mode


  • Instruction Operand is in a Instruction directly (addi $t1, $t2, 98)

Displacement Addressing Mode


  • Instruction Operand is in memory with Memory Address calculated as Base + Offset (lw $t1, 20($t2))

PC-relative Addressing Mode


  • Instruction Operand is the sum of Program Counter and constant in the instruction (beq, bne)
  • Abstract
  • Register Addressing Mode
  • Immediate Addressing Mode
  • Displacement Addressing Mode
  • PC-relative Addressing Mode

Mentioned by

  • MIPS I-Type Instruction
  • Instruction Stages
  • Register
  • cs2100 nus notes
  • Address Space

Graph View


Created by Xinyang YU | © 2023, 2025 | Licensed under CC BY-NC 4.0

  • GitHub