Topic 1: Components of a computer Flashcards
What are the components of the Central Processing Unit?
- Control Unit
- Busses (Address bus, Control bus, Data bus)
- Arithmetic / Logic Unit (ALU)
- Registers (Accumulator, Program Counter, Current Instruction Register, Memory Address Register, Memory Data Register)
What is the purpose of the Control Unit?
The control unit controls and coordinates the activities of the CPU.
What is the job of the Address Bus?
The Address Bus carries the address of the piece of memory or input/ output devices to be read from or written to
What is the job of the Data Bus?
The Data Bus consists of 8, 16, 32 or 64 separate lines which provides a two-way path for data and instructions moving between system components
What is the job of the Control Bus?
The Control Bus is a two-way path. The purpose of the control bus is to transmit command, timing and specific status information between system components
What is the purpose of the ALU (Arithmetic and Logic Circuit)
The purpose of the ALU is to perform arithmetic and logical operations of the data, it can perform instructions such as ADD, SUBTRACT, MULTIPLY, DIVIDE on fixed or floating point numbers.
What is the purpose of the Program Counter?
The program counter holds the address of the next instruction to be executed.
What is the purpose of the Current Instruction Register?
The current instruction register holds the current instruction being executed, divided into operand and opcode
What is the purpose of the Memory Address Register?
The Memory Address register holds the address of the memory location from which data (or an instruction) is to be fetched or to which data is to be written
What is the purpose of the Memory Data Register?
The Memory Data Register stores the data being transferred to and from storage, it contains a copy of the designated memory locations specified by the Memory Address Register.
What is the purpose of the Accumulator?
The Accumulator stores the resultant of each calculation from the ALU
Explain each step of the Fetch part of the Fetch-Decode-Execute cycle.
- The address of the next instruction is copied from the program counter (PC) to the memory address register (MAR)
- The instruction held at that address is copied to the memory data register (MDR). Simultaneously, the content of the program counter (PC) is incremented so that it holds the address of the next instruction.
- the contents of the memory data register (MDR) are copied to the current instruction register (CIR)
Explain the Decode part of the Fetch-Decode-Execute cycle.
- The instruction held at the current instruction register (CIR) is decoded. The instruction is split into opcode and operand, the opcode is used to determine the type of instruction and what hardware to use to execute it.
What will the operand hold?
The actual data to be operated on, which will be copied to the MDR
The operand will hold either the: #The address of the data to be used with the operation, which is then copied to the MAR
Explain the Execute part of the Fetch-Decode-Execute cycle.
- the appropriate instructions / opcode is carried out on the operand.