Central processing unit/architecture | 9618 P1 CS

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/34

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

35 Terms

1
New cards

What is the control unit and what does it do?

- Directs and coordinates other parts of the computer system
- Controls operations of computer systems
- fetches computer instructions
- decodes each instruction
- executes these instructions

2
New cards

What is the arithmetic logic unit and what does it do?

- performs arithmetic operations and bit shifting operations
- performs logic operations
- designed to perform integer calculation

3
New cards

What are registers?

- small pieces of memory
- part of the processor
- temporary storage of data which is about to/has been processed

4
New cards

What is the difference between a general purpose and special purpose register?

- General purpose registers hold the temporary data while performing different operations
- Special purpose registers hold the status of a program

5
New cards

What does the program counter do?

Holds the address of the next instruction to be fetched

6
New cards

What does the MAR do?

Stores the memory address where the data is to be read from

7
New cards

What does the MDR do?

Stores data that has just been read from the memory

8
New cards

What does the CIR do?

Holds the current instruction being executed

9
New cards

What does the index register do?

Used for indirect addressing

10
New cards

What does the accumulator do?

Stores the results of calculations carried out by the ALU

11
New cards

Describe the purpose of status register

-contains information about the state of the processor
- the status registry is interpreted as independent flags
- each flag is set depending on an event.

12
New cards

What is a system clock?

- internal clock that regulates the rate at which the instructions are executed
- CPU requires a fixed number of clock cycles to execute each instruction
- used to synchronize all of the operations

13
New cards

How is data transferred between various components of the computer system?

Data buses

14
New cards

List the types of buses.

- Data bus
- Control bus
- Address bus

15
New cards

How is data transferred through a data bus?

- Data bus carries data between the processor and memory
- bi-directional bus used to exchange data

16
New cards

How is data transferred through a control bus?

- transmits signals between the control unit and other components
- bidirectional

17
New cards

How is data transferred through an address bus?

- uni-directional bus
- carries signals related to memory address between the processor and memory

18
New cards

What are the factors affecting the computer's performance?

- data bus width
- clock speed
- cache memory
- number of cores

19
New cards

How does data bus width affect a computers performance?

- width determines the number of bits that can be simultaneously transferred
- increasing the width increases the number of bits that can be transferred
- hence improves processing speed as fewer transfers are needed

20
New cards

How does clock speed affect a computers performance?

- one F-E cycle is run on each clock pulse
- clock speed dictates the number of instructions that can be run per second
- the faster the clock speed the more instructions can be run per second

21
New cards

How does cache memory affect a computer's performance?

- since cache uses SRAM, it has faster access time as there is no need for refreshing
- cache memory stores frequently used instructions and data that needs to be accessed faster

22
New cards

What are ports?

A computer uses ports to connect with peripheral devices
(female part of connection)

23
New cards

What are the benefits of connecting peripheral devices using a USB port?

- fast data transfer
(useful when transferring large files, such as video files)
- automatic connection/plug and play
(hence, no need to install separate drivers)
- USB ports are industrial standards
(all new computers have a USB port)
- Device may be powered through USB
(external device could be charged while working on the computer)

24
New cards

What is HDMI used for?

Digital connection - video + sound

- allows us to connect multiple monitors
- allow us to output both audio and visual
- they support high definition signals
- faster data transfer
- HDMI increases the bandwith making it possible to supply the necessary data for high-quality sound and visual effects

25
New cards

What are the advantages of HDMI?

- current standard for modern televisions and monitors
- allows for a very fast data transfer rate
- improve security (helps prevent piracy by the help of HDCP)
-

26
New cards

What are the disadvantages of HDMI?

- easy to break connection while moving devices
- Limited cable length

27
New cards

What does VGA stand for and what is it used for?

The Video Graphics Array connector is a standard connector used for computer video output.

28
New cards

What are the advantages of VGA?

- simpler technology
- only one standard available
- easy to split the signals and connect a number of devices from one source
- very secure connection
- higher refresh rate

29
New cards

What are the disadvantages of VGA?

- does not support audio
- outdated
- modern laptops and computers rarely have VGA ports
- easy to bend the pins when making connections

30
New cards

Describe the fetch-execute cycle..

1) PC holds the address of the next instruction to be fetched
2) the address in the program counter is copied to the MAR
3) program counter is incremented
4) The instruction is copied from the address stored in MAR to MDR
5) instruction from the MDR is copied to the CIR

Summary
MAR <---- [PC]
PC <---- [PC + 1]
MDR <---- [[MAR]]
CIR <---- [MDR]

<p>1) PC holds the address of the next instruction to be fetched<br>2) the address in the program counter is copied to the MAR<br>3) program counter is incremented<br>4) The instruction is copied from the address stored in MAR to MDR<br>5) instruction from the MDR is copied to the CIR<br><br><b>Summary</b><br>MAR &lt;---- [PC]<br>PC &lt;---- [PC + 1]<br>MDR &lt;---- [[MAR]]<br>CIR &lt;---- [MDR]</p>
31
New cards

MAR <---- [PC]
PC <---- [PC + 1]
MDR <---- [[MAR]]
CIR <---- [MDR]

State the purpose of the double brackets in the 3rd instruction.

It shows that the content of the MAR is an address. The contents of that address is transferred to MDR.

32
New cards

What is meant by interrupt?

- a signal from a device/source telling the processor that attention is needed

33
New cards

What is an example of hardware interrupt?

- printer runs out of paper
- no CD in drive

34
New cards

What is an example of software interrupt?

- runtime error
- a running program needs input

35
New cards

Explain how interrupts are handled during the F-E cycle

- CPU carries out the F-E cycle
- an interrupt occurs
- one bit in the interrupt register would change it's status
- at the next F-E cycle, the interrupt register is checked bit by bit
- the contents would indicate an interrupt occured and it needs servicing
- CPU would either service the interrupt or ignore it for now (depending on it's priority)
- once the interrupt is serviced by the CPU, it stops its current task and control is transferred to the interrupt handler
- once the interrupt is fully serviced, the regster is reset and the contents of registers are restored