Term 1- FDE cycle Flashcards
What are the main components of a computer?(8)
Case, motherboard, CPU, GPU, output devices, ram, rom, input devices
What does the CPU do?
Processes data, executes instructions, clock speed measured in hertz
Hertz
Number of cycles per second
Each processor has a … in which instructions are executed
Core
Each core executes instructions …
Independently
Concurrent processing
Being processed at the same time
Cache
Very fast, very small amount of memory on processor chip, acts as intermediary between processor and main memory, holds commonly used instructions
Accumulator
Register used by ALU to store results of calculations
ALU
Arithmetic Logic Unit, the component of the CPU that performs arithmetic as a logic calculator
PC
Program counter, increments by one each time, storing the address of the next instruction
MAR
Memory address register, stores the address of the current instruction/data
MDR
Memory data register, Stores the data/instruction that has been fetched from memory
CIR
Current instruction register, temporarily holds the instruction which is being decoded by the control unit
CU
Control unit, component of the CPU that manages instructions
FDE cycle in order(7)
- PC holds address of next operation
- Copy contents of PC to MAR from memory
- Increment PC
- load the instructions MAR points to to MDR
- Copy instructions from MDR to CIR
- CU decodes instructions in CIR
- Execute the instruction