スキル一覧に戻る

simulate-cpu-architecture

pjt222
更新日 2 days ago
2 閲覧
17
2
17
GitHubで表示
メタdesigndata

について

このスキルは、開発者が最小限のCPUを一から設計・シミュレーションすることを可能にします。具体的には、ISA(命令セットアーキテクチャ)の定義、データパスの構築、フェッチ・デコード・実行サイクルの実装を含みます。デジタル論理ブロックを組み合わせて完全なプロセッサを構成し、プログラム実行のトレースによって検証する総合演習となります。「コンピュータ内のコンピュータ」という実践的なシミュレーションを通じて、CPU内部の仕組みを深く理解するためにご活用ください。

クイックインストール

Claude Code

推奨
メイン
npx skills add pjt222/agent-almanac -a claude-code
プラグインコマンド代替
/plugin add https://github.com/pjt222/agent-almanac
Git クローン代替
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/simulate-cpu-architecture

このコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします

ドキュメント

Simulate CPU Architecture

Design minimal but complete CPU. Define instruction set architecture. Compose ALU and register file into datapath. Design control unit that generates correct signals for each instruction phase. Implement fetch-decode-execute cycle. Simulate small program to completion. Verify every clock cycle against expected register and memory state.

When Use

  • Learn or teach computer architecture from first principles
  • Design custom processor for FPGA or educational simulator
  • Verify understanding of how instructions execute at gate and register-transfer level
  • Build software simulation (Python, JavaScript, or structured walkthrough) of CPU
  • Compose combinational blocks from design-logic-circuit and sequential blocks from build-sequential-circuit into working system

Inputs

  • Required: Processor complexity target -- 4-bit, 8-bit, or 16-bit data width; number of general-purpose registers (2-16)
  • Required: Minimum instruction set -- at least: load, store, add, subtract, bitwise AND/OR, branch, halt
  • Optional: Addressing modes beyond direct (immediate, register-indirect, indexed)
  • Optional: Extra instructions (multiply, shift, compare, jump-and-link for subroutines)
  • Optional: Memory size and word size
  • Optional: Pipeline stages (single-cycle, multi-cycle, or pipelined) -- default multi-cycle
  • Optional: Implementation medium -- software simulation (Python/JS), HDL (Verilog/VHDL), or paper walkthrough

Steps

Step 1: Define Instruction Set Architecture

Specify everything programmer needs know to write machine code for this CPU:

  1. Data width: Choose the bit width for data (ALU operand size) and addresses. Common choices: 8-bit data / 8-bit address (256 bytes addressable), 16-bit data / 16-bit address.
  2. Register file: Define the number of general-purpose registers and any special-purpose registers.
    • General-purpose: R0-R(N-1). Decide if R0 is hardwired to zero (simplifies instruction encoding).
    • Special-purpose: Program Counter (PC), Instruction Register (IR), Status/Flags register (Zero, Carry, Negative, Overflow).
  3. Instruction format: Design a fixed-width instruction word. Divide the bits into fields:
    • Opcode: Identifies the operation. With K bits, support up to 2^K instructions.
    • Register fields: Source and destination register addresses. With N registers, each field needs ceil(log2(N)) bits.
    • Immediate/offset field: For constants or branch offsets. Use remaining bits.
  4. Instruction catalog: Define each instruction with its mnemonic, opcode encoding, operand fields, operation (in RTL notation), and affected flags.
  5. Addressing modes: Define how operands are located.
    • Register: Operand is in a register.
    • Immediate: Operand is embedded in the instruction.
    • Direct: Operand address is in the instruction.
    • Register-indirect: Operand address is in a register.
## ISA Specification
- **Data width**: [N] bits
- **Address width**: [M] bits
- **Registers**: [count] general-purpose + [list of special-purpose]
- **Instruction width**: [W] bits

### Instruction Format
| Field    | Bits      | Width |
|----------|-----------|-------|
| Opcode   | [W-1:X]  | [n]   |
| Rd       | [X-1:Y]  | [n]   |
| Rs       | [Y-1:Z]  | [n]   |
| Imm      | [Z-1:0]  | [n]   |

### Instruction Catalog
| Mnemonic | Opcode | Format    | RTL Operation          | Flags |
|----------|--------|-----------|------------------------|-------|
| LOAD     | 0000   | Rd, [addr]| Rd <- MEM[addr]       | -     |
| STORE    | 0001   | Rs, [addr]| MEM[addr] <- Rs       | -     |
| ADD      | 0010   | Rd, Rs    | Rd <- Rd + Rs         | Z,C,N |
| ...      | ...    | ...       | ...                    | ...   |
| HALT     | 1111   | -         | Stop execution         | -     |

Got: Complete ISA spec where every instruction has unique opcode, well-defined operand fields, unambiguous RTL description, documented flag effects. Instruction encoding must be decodable without ambiguity.

If fail: Instruction word too narrow to encode all needed fields? Either widen instruction, reduce register count, use variable-length instructions (more complex decoding), or split instructions into sub-operations. Opcodes collide? Reassign encoding.

Step 2: Design Datapath

Build register-transfer level hardware that moves and transforms data:

  1. ALU: Design using the design-logic-circuit skill. The ALU takes two N-bit operands and an operation select signal, and produces an N-bit result plus flag outputs (Zero, Carry, Negative, Overflow).
    • Operations: ADD, SUB (via 2's complement add), AND, OR, XOR, NOT, SHIFT LEFT, SHIFT RIGHT, PASS-THROUGH (for moves and loads).
    • The ALU select width must accommodate all required operations.
  2. Register file: Design using build-sequential-circuit. A bank of registers with:
    • Two read ports (source A, source B) -- combinational read with register address as input.
    • One write port (destination) -- clocked write enabled by a RegWrite control signal.
    • If R0 is hardwired to zero, override writes to R0.
  3. Program Counter (PC): An N-bit register with:
    • Increment logic (PC + instruction_width/8 for the next sequential instruction).
    • Load input for branch/jump targets.
    • Multiplexer selecting between increment and branch target, controlled by a PCsrc signal.
  4. Memory interface: Separate or unified instruction and data memory.
    • Harvard architecture: Separate instruction memory (read-only during execution) and data memory (read-write). Simpler, allows simultaneous fetch and data access.
    • Von Neumann architecture: Single shared memory for instructions and data. Requires sequencing fetch and data access in different cycles.
  5. Interconnect: Multiplexers and buses connecting the components:
    • ALU input A mux: register read port A or PC (for PC-relative addressing).
    • ALU input B mux: register read port B or sign-extended immediate.
    • Register write data mux: ALU result or memory read data (for loads).
    • Memory address mux: PC (for instruction fetch) or ALU result (for load/store).
## Datapath Components
| Component       | Width  | Ports / Signals                    |
|----------------|--------|------------------------------------|
| ALU            | [N]-bit| OpA, OpB, ALUop -> Result, Flags  |
| Register File  | [N]-bit| RdAddrA, RdAddrB, WrAddr, WrData, RegWrite -> RdDataA, RdDataB |
| PC             | [M]-bit| PCnext, PCwrite -> PCout           |
| Instruction Mem| [W]-bit| Addr -> Instruction                |
| Data Memory    | [N]-bit| Addr, WrData, MemRead, MemWrite -> RdData |

## Datapath Multiplexers
| Mux Name     | Inputs               | Select Signal | Output      |
|-------------|----------------------|---------------|-------------|
| ALU_B_mux   | RegDataB, Immediate  | ALUsrc        | ALU OpB     |
| WrData_mux  | ALU Result, MemData  | MemToReg      | Reg WrData  |
| PC_mux      | PC+1, BranchTarget   | PCsrc         | PC next     |

Got: Complete datapath diagram (as component table and mux table) where every instruction in ISA has viable path for data to flow from source to destination through ALU, register file, memory.

If fail: Instruction cannot execute with current datapath (e.g., no path from memory to register for LOAD)? Add missing multiplexer or data path. Walk through each instruction's RTL operation, trace required signal flow through datapath.

Step 3: Design Control Unit

Build logic that orchestrates datapath for each instruction:

  1. Identify control signals: List every multiplexer select, register write enable, memory read/write enable, and ALU operation select signal in the datapath.
  2. Single-cycle control (simplest): A purely combinational control unit that derives all control signals from the opcode field of the current instruction in one clock cycle.
  3. Multi-cycle control (recommended for learning): A finite state machine (designed using build-sequential-circuit) that breaks each instruction into phases:
    • Fetch: Read instruction from memory at PC address; store in IR; increment PC.
    • Decode: Read register file using fields from IR; sign-extend the immediate field.
    • Execute: Perform the ALU operation or compute the memory address.
    • Memory access (load/store only): Read from or write to data memory.
    • Write-back: Write the result to the destination register.
  4. Control signal table: For each instruction and each phase, specify the value of every control signal.
  5. Hardwired vs. microprogrammed:
    • Hardwired: The control FSM is built from gates and flip-flops. Faster, less flexible.
    • Microprogrammed: A microinstruction ROM stores the control signals for each state. Each microinstruction contains the control signal values plus a next-state field. Slower, but easy to modify.
## Control Signals
| Signal     | Width | Function                              |
|-----------|-------|---------------------------------------|
| ALUop     | [k]   | Selects ALU operation                 |
| ALUsrc    | 1     | 0=register, 1=immediate for ALU B    |
| RegWrite  | 1     | Enable register file write            |
| MemRead   | 1     | Enable data memory read               |
| MemWrite  | 1     | Enable data memory write              |
| MemToReg  | 1     | 0=ALU result, 1=memory data to register |
| PCsrc     | 1     | 0=PC+1, 1=branch target              |
| IRwrite   | 1     | Enable instruction register load      |

## Multi-Cycle Control FSM
| State   | Active Signals                          | Next State         |
|---------|----------------------------------------|-------------------|
| FETCH   | MemRead, IRwrite, PC <- PC+1           | DECODE             |
| DECODE  | Read registers, sign-extend immediate   | EXECUTE            |
| EXECUTE | ALUop=[per instruction], ALUsrc=[...]  | MEM_ACCESS or WB   |
| MEM_ACC | MemRead or MemWrite                    | WRITE_BACK         |
| WB      | RegWrite, MemToReg=[...]               | FETCH              |

Got: Control unit (combinational or FSM) generates correct control signal values for every instruction at every phase, no conflicting signals (e.g., MemRead and MemWrite both active simultaneous on same memory).

If fail: Control signal conflict exists? Phases not properly separated. Ensure load and store instructions access memory in different phases or memory interface supports simultaneous read and write on separate ports. FSM has too many states? Check whether some instructions share phases and can be merged.

Step 4: Implement Fetch-Decode-Execute Cycle

Connect datapath and control unit into working processor:

  1. Clock distribution: Connect the system clock to all flip-flops (PC, IR, register file, control FSM state register). All state updates happen on the same clock edge.
  2. Phase sequencing: Wire the control FSM outputs to the datapath control signals. The FSM advances one state per clock cycle, driving the datapath through Fetch -> Decode -> Execute -> Memory -> Write-back.
  3. Instruction fetch: In the FETCH phase, the PC drives the instruction memory address bus. The fetched instruction loads into IR. The PC increments by one instruction width.
  4. Instruction decode: In the DECODE phase, the opcode field of IR drives the control unit to determine the instruction type. Register addresses from IR drive the register file read ports.
  5. Execute and beyond: The remaining phases depend on the instruction type:
    • ALU instructions: Execute (ALU computes), Write-back (result to register).
    • Load: Execute (ALU computes address), Memory (read data memory), Write-back (data to register).
    • Store: Execute (ALU computes address), Memory (write data memory).
    • Branch: Execute (ALU compares or checks flags), conditionally update PC.
    • Halt: FSM enters a terminal state and stops advancing.
  6. Interrupt and exception handling (optional): Add a mechanism to save PC and jump to a handler address. This requires additional control states and a cause register.
## Cycle Execution Summary
| Instruction Type | Phases                          | Cycles |
|-----------------|--------------------------------|--------|
| ALU (reg-reg)   | Fetch, Decode, Execute, WB     | 4      |
| Load            | Fetch, Decode, Execute, Mem, WB| 5      |
| Store           | Fetch, Decode, Execute, Mem    | 4      |
| Branch (taken)  | Fetch, Decode, Execute         | 3      |
| Branch (not taken)| Fetch, Decode, Execute       | 3      |
| Halt            | Fetch, Decode                  | 2      |

Got: Fully connected processor where control FSM drives datapath through correct sequence of phases for each instruction type, all state transitions occur synchronous on clock edge.

If fail: Processor hangs (never reaches HALT) or produces incorrect results? Most likely cause: control signal error in one specific phase. Use Step 5's cycle-by-cycle trace to isolate failing cycle. PC does not increment correct? Check FETCH phase wiring. Wrong register written? Check register address field extraction from IR.

Step 5: Simulate Small Program and Verify

Execute concrete program. Verify every clock cycle against expected state:

  1. Write a test program: Choose a program small enough to trace completely (5-15 instructions) but complex enough to exercise multiple instruction types. Fibonacci sequence computation is ideal: it uses load-immediate, add, branch, and halt.
  2. Initialize state: Set all registers to 0. Load the program into instruction memory starting at address 0. Set PC = 0. Set the control FSM to the FETCH state.
  3. Cycle-by-cycle trace: For each clock cycle, record:
    • Control FSM state and phase name
    • PC value and instruction being fetched/executed
    • ALU inputs, operation, and result
    • Register file reads and writes
    • Memory reads and writes
    • Flag register values
    • All control signal values
  4. Verify against hand computation: Independently compute the expected register and memory state after each instruction completes (not each cycle -- each instruction takes multiple cycles). Compare the simulation trace against these expected snapshots.
  5. Edge cases: Verify behavior for:
    • Branch not taken (PC increments normally)
    • Branch taken (PC loads branch target)
    • Load followed immediately by use of loaded register (checks if write-back completes before next decode reads)
    • Writing to R0 if hardwired to zero (write should have no effect)
    • HALT instruction (processor stops cleanly)
## Test Program: Fibonacci (first 8 terms)
| Addr | Instruction    | Mnemonic         | Comment              |
|------|---------------|------------------|----------------------|
| 0x00 | [encoding]    | LOAD R1, #1      | R1 = 1 (F1)         |
| 0x01 | [encoding]    | LOAD R2, #1      | R2 = 1 (F2)         |
| 0x02 | [encoding]    | LOAD R3, #6      | R3 = 6 (loop count) |
| 0x03 | [encoding]    | ADD R4, R1, R2   | R4 = R1 + R2        |
| 0x04 | [encoding]    | MOV R1, R2       | R1 = R2              |
| 0x05 | [encoding]    | MOV R2, R4       | R2 = R4              |
| 0x06 | [encoding]    | SUB R3, R3, #1   | R3 = R3 - 1         |
| 0x07 | [encoding]    | BNZ 0x03         | Branch if R3 != 0   |
| 0x08 | [encoding]    | HALT             | Stop                 |

## Cycle-by-Cycle Trace (excerpt)
| Cycle | Phase   | PC  | IR       | ALU Op   | Result | RegWrite | Flags |
|-------|---------|-----|----------|----------|--------|----------|-------|
| 1     | FETCH   | 0x00| LOAD R1,1| -        | -      | No       | -     |
| 2     | DECODE  | 0x01| LOAD R1,1| -        | -      | No       | -     |
| 3     | EXECUTE | 0x01| LOAD R1,1| PASS #1  | 1      | No       | -     |
| 4     | WB      | 0x01| LOAD R1,1| -        | -      | R1 <- 1  | -     |
| ...   | ...     | ... | ...      | ...      | ...    | ...      | ...   |

## Expected Final State
| Register | Value | Description         |
|----------|-------|---------------------|
| R1       | [val] | Second-to-last Fib  |
| R2       | [val] | Last computed Fib   |
| R3       | 0     | Loop counter done   |
| R4       | [val] | Same as R2          |
| PC       | 0x09  | One past HALT       |

Got: Cycle-by-cycle trace matches expected final state. Every instruction produces correct register and memory updates. Program terminates at HALT with correct Fibonacci values in registers.

If fail: Compare first divergence between expected and actual state. Common causes: (1) ALU operation select wrong for one instruction type -- check control signal table. (2) Branch offset calculation off by one -- verify whether branches are PC-relative from current or next instruction address. (3) Write-back writes to wrong register -- check register address field extraction. (4) Flags not updated correct -- trace ALU flag logic for specific operands that cause mismatch.

Checks

  • ISA has at least load, store, add, subtract, AND, OR, branch, halt instructions
  • Every instruction has unique opcode and unambiguous encoding
  • Datapath provides valid signal path for every instruction's RTL operation
  • ALU supports all required operations with correct flag generation
  • Register file has sufficient read and write ports for instruction format
  • Control unit generates correct signals for every instruction at every phase
  • No control signal conflicts (e.g., simultaneous read and write to same memory port)
  • Fetch-decode-execute cycle fully connected and clocked
  • Test program executes to completion with correct final state
  • Cycle-by-cycle trace verified against hand computation
  • Branch taken and not-taken cases both verified
  • HALT instruction stops execution clean

Pitfalls

  • Branch offset off-by-one: Branches may be relative to current PC, PC+1, or instruction after branch. Define convention in ISA, implement consistent. Off-by-one errors in branch targets single most common CPU design bug.
  • Write-back/decode hazard in multi-cycle: Instruction I writes register in write-back phase at same time instruction I+1 reads that register in decode phase? Read may get old value. Multi-cycle CPU (one instruction at a time)? Not an issue. Pipelined CPU? Needs forwarding or stalling.
  • Forget increment PC during fetch: PC not incremented in FETCH phase? CPU executes same instruction forever. Trivial common wiring error.
  • ALU flags latching: Flags should update only on ALU instructions, never on loads, stores, or branches. Flags update unconditional? Load between compare and branch corrupts comparison result.
  • Unsigned vs. signed confusion: Decide at ISA definition time whether arithmetic signed (2's complement) or unsigned. Implement ALU and flag logic accordingly. Carry flag has different semantics for signed vs. unsigned operations.
  • Memory alignment: Data width and instruction width differ, or instructions multi-byte? Define alignment rules. 16-bit instruction in byte-addressable memory occupies two addresses; PC must increment by 2, not 1.
  • Over-complicate first design: Start with simplest possible CPU (8-bit, 4 registers, 8 instructions, single-cycle or multi-cycle, no pipeline). Complexity can always be added later; working simple design teaches more than broken complex one.

See Also

  • design-logic-circuit -- design ALU, multiplexers, decoders, other combinational blocks
  • build-sequential-circuit -- design register file, program counter, control FSM, other sequential blocks
  • evaluate-boolean-expression -- simplify control logic equations for hardwired control unit
  • derive-theoretical-result -- formalize performance analysis (CPI, throughput, Amdahl's law)

GitHub リポジトリ

pjt222/agent-almanac
パス: i18n/caveman/skills/simulate-cpu-architecture
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

関連スキル

content-collections

メタ

このスキルは、Content Collections(Markdown/MDXファイルを型安全なデータコレクションに変換するTypeScriptファーストのツール)の本番環境でテストされた設定を提供します。Zodバリデーションによる型安全性を実現し、ブログ、ドキュメントサイト、コンテンツ重視のVite + Reactアプリケーション構築時にご利用ください。Viteプラグインの設定、MDXコンパイルから、デプロイ最適化、スキーマバリデーションまで、すべてを網羅しています。

スキルを見る

polymarket

メタ

このスキルは、開発者がPolymarket予測市場プラットフォームを活用したアプリケーション構築を可能にします。API統合による取引や市場データの取得に加え、WebSocketを介したリアルタイムデータストリーミングにより、ライブ取引や市場活動を監視できます。取引戦略の実装や、ライブ市場更新を処理するツールの作成にご利用ください。

スキルを見る

creating-opencode-plugins

メタ

このスキルは、開発者がコマンド、ファイル、LSP操作など25種類以上のイベントタイプにフックするOpenCodeプラグインを作成することを支援します。JavaScript/TypeScriptモジュール向けに、プラグイン構造、イベントAPI仕様、および実装パターンを提供します。カスタムイベント駆動ロジックでOpenCode AIアシスタントのライフサイクルをインターセプト、監視、または拡張する必要がある場合にご利用ください。

スキルを見る

sglang

メタ

SGLangは、高性能なLLMサービングフレームワークであり、RadixAttentionプレフィックスキャッシュを活用したJSON、正規表現、エージェントワークフロー向けの高速で構造化された生成を特長とします。特にプレフィックスが繰り返されるタスクにおいて、大幅に高速な推論を実現し、複雑な構造化出力やマルチターン対話に最適です。制約付きデコードが必要な場合や、広範なプレフィックス共有を伴うアプリケーションを構築する場合は、vLLMなどの代替案ではなくSGLangを選択してください。

スキルを見る