Terms Flashcards

1
Q

ALU

A

Arithmetic Logic Unit: “The part of the CPU where data is processed and manipulated. This processing and manipulation normally consists of arithmetic operations or logical comparisons allowing a program to make decisions.”

Example sentence: The ALU performs calculations such as addition and subtraction.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Control Unit

A

The part of the CPU that manages the execution of instructions. The control unit fetches each instruction in sequence, and decodes and synchronises it before executing it by sending control signals to other parts of the computer.

Example sentence: The control unit coordinates the flow of data within the CPU.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Register

A

Tiny areas of extremely fast memory located in the CPU normally designed for a specific purpose, where data or control information is stored temporarily.

Example sentence: Registers are used to store intermediate data during calculations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Program Counter

A

A register in the control unit which holds the address of the next instruction to be executed.

Example sentence: The program counter keeps track of the current instruction being executed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Accumulator

A

A special register within the ALU. It is used to hold the data currently being processed by the central processor. Any data to be processed is stored temporarily in the accumulator, the results ending up back in the accumulator being stored in the memory unit.

Example sentence: The accumulator stores the result of arithmetic operations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Memory Address Register

A

A register in the CPU that stores the address of the memory location currently in use. In the fetch phase, this would be the address of the instruction being loaded; in the execute phase, it would be the address of the data being used.

Example sentence: The memory address register holds the location of data in memory.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Memory Data Register

A

A register in the CPU that stores data being transferred to and from the immediate-access store. It acts as a buffer, allowing the central processor and memory unit to act independently without being affected by minor differences in operation. A data item will be copied to the MDR ready for use at the next clock pulse, when it can either be used by the central processor or be stored in main memory.

Example sentence: The memory data register holds data temporarily during processing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Current Instruction Register

A

A register in the control unit that stores the address of the next instruction currently being executed and decoded.

Example sentence: The current instruction register keeps track of the instruction being executed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Busses

A

A common physical pathway shared by signals to and from several components of a computer.

Example sentence: Busses allow communication between different parts of the computer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Data Bus

A

The part of the bus which carries the actual information.

Example sentence: The data bus transfers data between the CPU and memory.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Address Bus

A

The part of the bus which carries identification about where the data is being sent.

Example sentence: The address bus specifies the memory location for data transfer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Control Bus

A

This bus carries command and control signals to and from every other component of a computer.

Example sentence: The control bus coordinates communication between different parts of the computer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Fetch-Decode-Execute

A

The complete process of retrieving an instruction from store, decoding it and carrying it out. Also known as the instruction cycle.

Example sentence: The fetch-decode-execute cycle is essential for executing instructions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

CPU

A

Central Processing Unit: “The main part of the computer, consisting of the registers, ALU and control unit.”

Example sentence: The CPU is responsible for executing instructions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Clock Speed

A

Measured in Hertz, the clock speed is the frequency at which the internal clock generates pulses. The higher the clock rate, the faster the computer may work. The “clock” is the electronic unit that synchronises related components by generating pulses at a constant rate.

Example sentence: A higher clock speed allows for quicker processing of tasks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Control unit

A

The part of the processor that coordinates the activity of all the other components

17
Q

Control signals

A

Sent along the control bus between the control unit and other components if the computer

18
Q

What is a bus

A

Buses in a computer consist of a series of connectors that transfer signals between the internal components

Typically consisting of 8, 16, 32 or 64 lines

19
Q

The system bus consists of three separate buses carrying…

A

Control signals
Addresses
Data

20
Q

Memory read

A

Causes data from the addressed location in RAM to be placed on the data bus

21
Q

Memory write

A

Causes data on the data bus to be written to the addressed location in RAM

22
Q

Bus request

A

Indicates a device is requesting use of the data bus

23
Q

Bus grant

A

Indicated the cpu has granted access to the data bus

24
Q

Clock

A

Used to synchronise operations

25
Q

ALU

A

The problem solving part of the processor:
. Component performs arithmetic, logical and shift operations on data
. Arithmetic operations: Add, Subtract, Multiply and Divide
.Logical operations include: AND ,OR , NOT, XOR
.shift operations: move bits to the left or right within a register

26
Q

Why use registers

A

Rather than writing working data back to ‘slow’ memory processors have several locations of super-fast memory called registers that are used to temporarily store results

The processor is then immediately able to access and re-use these resukts in subsequent calculations

27
Q

Carrying out a sequence of programming instructions requires many different leices of info to be held

A

.the processor has to temporarily hold the current instruction being executed
.it has to hold the address of the data that it needs, and also the data itself
.it has to keep track of the address of the next instruction

28
Q

Program counter

A

Holds the memory address of the next instruction to be executed

29
Q

Currebt instruction register

A

Holds the current instruction, which is split into opcode and operand

30
Q

Memory address register

A

Holds the address in memory where the processor is required to fetch or store from or to

31
Q

Memory data register

A

Temporarily holds data moving between the processor and main memory

32
Q

Accumulator

A

To hold intermediate results of an instruction

33
Q

What is the role of the processor

A

To carry out instructions from programs stores in memory

34
Q

Fetch (steps 1-4)

A
  1. The address of the next instruction is copied from the PC to the Memory Address Register (MAR)
  2. The instruction held at the address is copied to the Memory Data Register (MDR)
  3. Simultaneously, the contents of the Program Counter(PC) are incremented
  4. The contents of the MDR are copied to the Current Instruction Register (CIR)
35
Q

Decode (steps 5 - 7)

A
  1. Instruction held in the CIR is decoded
  2. It is split into operand and opcode to determine the type of instruction it is. Additional data, if required, is fetched from memory
  3. And passed to the accumulator
    -the opcode specifies the operation that is to be carried out
    -the operandi holds either:
    The address of the data to be used, which is then copied to the MAR or

The actual data to be operated on, which is passed to the MDR

36
Q

Execute (step 8)

A

The instruction is executed and the result held in the accumulator or stored in memory