1.1.1 Structure And Function Of A Processor Flashcards

1
Q

What does the Arithmetic and Logic unit do?

A

The ALU completes all the arithmetic and logical operations

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

What is the Control Unit?

A

A part of the processor which directs operations inside the CPU

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

What are registers?

A

Small memory cells that operate at high speeds

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

Where do all the arithmetic, logic, or shift operations occur?

A

They occur in registers

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

What does the Program Counter (PC) do?

A

The PC holds the address of the next instruction to executed

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

In which part of the CPU do all the calculations take place?

A

Arithmetic and Logic Unit (ALU)

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

Where are the intermediate arithmetic and logic results stored

A

In the Accumulator (ACC)

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

What does the Memory Address Register (MAR) do?

A

Holds the address of a location that is to be read from or written to

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

What does the Memory Data Register (MDR) do?

A

Temporarily stores the data that has just been read from or the data that needs to be written to memory

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

What does the Current Instruction Register (CIR) do?

A

Holds the current instruction, the instruction is divided up into opcode and operand

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

What is a bus?

A

A set of parallel wires connecting two or more components together

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

What is a system bus?

A

The collection of the data bus, address bus, and control bus is called the system bus

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

What is the width of a bus?

A

The number of parallel wires it has

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

What is the data bus?

A

A bi-directional bus used to transport data and instructions between components

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

What is the control bus?

A

The bi-directional bus used to transmit control signals between internal and external components

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

What is the address bus?

A

Used to transmit the memory address specifying where data is to be sent from or retrieved from

17
Q

What does adding a wire to the address bus do to
the number of addressable locations?

A

It doubles the number of addressable
locations

18
Q

What does Bus Request indicate?

A

It indicates a device is requesting access
to the data bus.

19
Q

What does Bus Grant indicate?

A

What does Bus Grant indicate?
Indicates the CPU has granted access to
the data bus

20
Q

What does memory write do?

A

Causes the data on the data bus to be
written into the addressed location

21
Q

What does memory read do?

A

Causes the data from the addressed
location to be placed onto the data bus.

22
Q

What does the interrupt request control signal
indicate?

A

Indicates that a device is requesting
access to the CPU.

23
Q

What is the clock control signal used for?

A

It is used to synchronise instructions.

24
Q

What is Assembly Language?

A

Assembly Language is a programming
language where mnemonics are used to
represent instructions.

25
What is opcode?
Opcode is used to determine the type of instruction and what hardware to use to execute it.
26
What is the operand?
The operand is the address of where the operation is performed.
27
What occurs during the fetch phase?
- The address from the PC is copied to the MAR, - Instruction held at that address is copied to the MDR by the data bus, simultaneously the contents of the PC is increased by 1, - The value of the MDR is copied to the CIR
28
What occurs during the decode phase?
The contents of the CIR is split into operand and opcode.
29
What occurs during the execute phase?
The opcode is executed on the data.
30
What is the clock speed?
The number of clock cycles completed per second.
31
What is cache memory?
Cache memory is the CPU’s onboard memory which can be accessed a lot faster than main memory
32
What is pipelining?
The process of completing the fetch, decode and execute of three separate files simultaneously.
33
What is Von Neumann architecture?
Architecture in which there is a single shared memory and shared data bus for both data and instructions.
34
What is Harvard architecture?
Architecture in which there is two separate memory and data buses for data and instructions.
35
What is contemporary processing?
Processing in which Von Neumann architecture is used for main memory. Cache uses Harvard architecture, divided into instruction cache and data cache