Paper 1: CPU Architecture Flashcards

1
Q

What is the Von Neumann Architecture?

A

Data and instructions (Programs) are stored together in memory

This allows the computer to run different programs rather than just complete one type of task.

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

What does the Control Unit (CU) do?

A

Directs the flow of data inside the CPU and manages all CPU components

It tells them when to work.

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

What is the function of the Arithmetic Logic Unit (ALU)?

A

Carries out calculations and logical operations such as AND, OR, NOT and Binary shifts.

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

What is a Register in CPU architecture?

A

Memory that stores one piece of data, an Instruction or an address.

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

What does the Program Counter (PC) store?

A

The address of the next instruction in the cycle.

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

What is the role of the Memory Address Register (MAR)?

A

Stores the address currently in use by the CPU.

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

What does the Memory Data Register (MDR) store?

A

Stores Data fetched or to be written to memory.

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

What is the function of the Current Instruction Register (CIR)?

A

Stores the Current Instruction that has been fetched and the CPU is working on.

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

What does the Accumulator (ACC) store?

A

Stores the result of any calculations being carried out by the ALU.

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

What is the purpose of the Address Bus?

A

Sends the address of the memory to be accessed.

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

What does the Control Bus do?

A

Sends the signal to say what to do at the memory location, e.g., Store or Load.

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

What does the Data Bus contain?

A

Contains the data being sent or fetched from the memory location.

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

What is the fetch-decode-execute cycle?

A

The process used by the CPU to process program instructions and data.

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

What happens first in the fetch-decode-execute cycle?

A

The Program Counter is incremented.

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

What happens in the first stage of the 7 stages of the fetch-decode-execute cycle?

A

The memory address held in the program counter (PC) is copied into the memory address register (MAR).

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

What does the Control Unit signal after copying the address to the MAR?

A

It tells the processor to send a signal along the address bus to the memory address held in the MAR.

17
Q

What occurs after the instruction or data is sent to the MDR?

A

If it is an instruction, it is copied into the Current Instruction Register (CIR).

18
Q

What happens to the Program Counter after fetching an instruction?

A

The address in the program counter is incremented by one.

19
Q

What is decoded by the Control Unit after fetching the instruction?

A

The instruction in the Current Instruction Register (CIR).

20
Q

What is the last step in the fetch-decode-execute cycle?

A

Results of processing are stored in the accumulator (ACC).

21
Q

True or False: The fetch-decode-execute cycle ends after one execution.

22
Q

Fill in the blank: The instruction has been completed, so the process returns to step ___ and repeats.