This key facts covers Stage 1: FETCH - "Get the Instruction" within Fetch-Decode-Execute Cycle for GCSE Computer Science. Revise Fetch-Decode-Execute Cycle in 3.4 Computer Systems for GCSE Computer Science with 16 exam-style questions and 12 flashcards. This topic appears less often, but it can still be a useful differentiator on mixed-topic papers. It is section 4 of 10 in this topic. Use this key facts to connect the idea to the wider topic before moving on to questions and flashcards.
Stage 1: FETCH - "Get the Instruction"
The Fetch-Decode-Execute (FDE) cycle is the three-stage sequence every CPU uses to process instructions. Fetch: the PC holds the address of the next instruction → copied to MAR → instruction retrieved from RAM into MDR → copied to CIR → PC increments. Decode: the Control Unit interprets the instruction in the CIR. Execute: the ALU carries out the operation and stores the result in the Accumulator. This cycle repeats continuously — every program instruction goes through exactly these three stages, billions of times per second.
Purpose: Retrieve the next instruction from main memory (RAM)
Detailed Step-by-Step Process:
- Step 1: The address currently in the PC (Program Counter) is copied to the MAR (Memory Address Register)
- Step 2: The address in MAR is sent along the Address Bus to main memory
- Step 3: Memory locates the instruction at that address
- Step 4: The instruction is sent back via the Data Bus to the MDR (Memory Data Register)
- Step 5: The instruction in MDR is copied to the CIR (Current Instruction Register)
- Step 6: The PC is incremented (+1) to point to the address of the next instruction
Key Registers Involved:
- PC: Holds address of next instruction, then increments
- MAR: Receives the address from PC, sends it to memory
- MDR: Receives the instruction from memory
- CIR: Holds the current instruction being processed
Memory trick: "Please Make Me Coffee In Pots" = PC → MAR → Memory → (back to) MDR → CIR → PC+1
Practice questions for Fetch-Decode-Execute Cycle
What does FDE stand for in computer science?
Describe the three stages of the FDE cycle.