Chapter 4 Flashcards
What are the three main sections a computer system consists of?
- CPU (/processor): the main processing unit
- Storage
i. Primary (/main) memory: RAM and ROM, cache memory and registers
ii. Secondary storage – Hard drives, CD-ROMs - Input and Output devices: allow interaction with the computer
What are the components of the CPU?
▪ Arithmetic Logic Unit (ALU)
▪ Control Unit (CU)
▪ System Clock
▪ Immediate Access Store (IAS)
What does the Arithmetic Logic Unit (ALU) do?
Allows
• Arithmetic operations: addition, subtraction, multiplication, division
• Logical operations (comparing one data item
to another)
Caried out while a program is running
What is the Accumulator (ACC)?
Accumulator (ACC) is the register used to store
values when carrying out ALU calculations – it is
inside the ALU
What does the Control Unit (CU) do?
▪ CU ensures synchronization by sending out signals along the control bus to control operations while fetching, interpreting and executing instructions
▪ Tells the other computer components what to do (input/output, flow of data)
What does the System Clock do?
▪ Sends out a number of pulses in a given time
interval on the control bus to ensure synchronisation takes place
▪ An electronic pulse of the CPU is called Clock cycle
▪ Each processor instruction takes a certain
number of clock cycles to execute
▪ The higher the clock frequency, the shorter the
execution time for the instruction// Increasing
the clock frequency improves performance
What purpose does the Immediate Access Store (IAS) have?
▪ Stores all the data and programs that the processor needs to access
▪ Done by the CPU temporarily
▪ Read/write operations carried out using IAS is faster than read/write operations to backing store
What are registers?
- Small pieces of fast memory where data is stored temporarily
- Part of the processor
What is the difference between general purpose registers and special purpose registers?
General Purpose:
• Hold data that is frequently used by the CPU or can be used by the programmer when addressing the CPU directly
• Example: Accumulator (ACC)
Special Purpose:
• Have a specific function within the CPU and hold the program state
• Example: CIR, IX, MAR, MDR, PC , SR
What is the purpose of the Current Instruction Register (CIR)?
Stores the current instruction being decoded and executed
What is the purpose of the Index Register (IX)?
Used when carrying out index addressing operations
assembly code
What is the purpose of the Memory Address Register
(MAR)?
Stores the address of the memory location currently being read for or written to
What is the purpose of the Memory Data Register (MDR/MBR)?
Stores data which has just been read form memory or data which is about to be written to memory (sometimes referred to as MBR)
What is the purpose of the Program Counter (PC)?
Stores the address where the next instruction to be read (fetched) can be found
What is the purpose of the Status Register (SR)?
Contains bits which can be set or cleared depending on the operation (e.g.: to indicate overflow in a calculation)
What is a status register?
▪ Contains different bits/flags (each flag takes one bit with 0 or 1 value)
▪ Used when an instruction requires some form of arithmetic or logical
processing
Examples of flags
▪ Negative flag (N) : set to 1 if the result of a calculation yields a NEGATIVE value
▪ Overflow flag (V) : set to 1 if an arithmetic operation results in an OVERFLOW
▪ Zero flag (Z) : set to 1 if the the result of an arithmetic/logic operation is ZERO
Where are the PC and CI registers found?
PC and CI registers are in the control unit
Where are the MDR and MAR found?
MDR and MAR are in the processor
Explain the Fetch-Decode-Execute cycle:
Fetch:
Fetches the next instruction and any data involved from main memory and stores them in registers
Decode:
Decodes (interprets, understands) the instruction
Execute:
Executes the instruction – sends control signals to the appropriate components of the computer system
What is a program?
A program is a set of instructions stored in a
sequential block of main memory locations
How are the registers during the fetch execute cycle utilized?
▪ Current Instruction Register (CIR) : Contains the current instruction being processed
▪ Program Counter (PC) : Contains the address of the next instruction to be executed
▪ Memory Address Register (MAR)
▪ Memory Data Register (MDR)
▪ General Purpose Registers: Holds data, such as numbers during arithmetic calculations
The steps in the fetch-execute cycle:
1) PC (Program Counter) register holds the address of the next instruction to be executed
2) CPU copies the address contained in the PC to the MAR via the address bus
3) The contents, the instruction, of the memory location contained in the MAR is then copied to the MDR
4) The contents, (the instruction) is then copied from the MDR and placed in the CIR
5) the value in the PC is then incremented so that it points to the next instruction to be fetched
6) the instruction is finally decoded and is then executed
The fetch-execute cycle using RTN
- MAR ← [PC] (Address stored in PC stored in MAR)
- PC ← [PC] + 1 PC (points to the next address-is incremented by 1)
- MDR ← [[MAR]] (Contents found in address stored in
MAR transferred to MDR)
- Double brackets means the data stored at the address shown in MAR that is being copied - CIR ← [MDR] (Contents of MDR transferred to CIR)
- Decode
- Execute
- Go to Step 1
What is an interrupt?
A signal from a program or device telling the processor its attention is needed
What can cause interrupts?
o Timing signal
o Input/output processes (e.g. disk drive ready to receive more data)
o Hardware fault (e.g.: paper jam, out of paper)
o User interaction (e.g.: Ctrl+Alt+Break keys to interrupt a process)
o Software error (e.g.: .exe not found, division by zero)
What happens when there’s an interrupt during the fetch-execute cycle?
- At the end of each fetch–execute cycle the processor checks for interrupt(s)
- Checks if an interrupt flag/bit is set (in interrupt register).
- Processor identifies source of interrupt
- Checks the priority of interrupt.
- If the interrupt priority is high enough
- Processor saves current contents of registers and
- Calls interrupt handler / Interrupt Service Routine (ISR)
- Address of ISR is loaded into Program Counter (PC)
- When servicing of interrupt complete, processor restores registers - Lower priority interrupts are re-enabled
- Processor continues with next F–E cycle
What is a bus?
A bus is a set of parallel wires connecting two or more components of the computer
Address bus:
Carries signal relating to addresses of main memory locations or input/output device to be used between the processor and memory
Unidirectional (addresses travel in one direction only) – from the processor to MAR
Data bus:
Sends data between the processor, the memory unit (and the input/output devices)
Bi-directional (data can travel in both
directions). Data is carried from CPU to
memory (and vice versa) as well as to and
from input/output devices
Control bus:
Carries signals relating to the control and coordination of all activities within the computer (e.g.: read and write functions) from CU to all the other computer components
Bi-directional. It carries signals from the CU to all the other computer components
What happens when we increase the bus address width?
The wider the data bus, the larger the number of bits (word length) that can be transported simultaneously at one time.
Increasing the width of address bus increases the performance of a computer system as fewer transfers are needed (increases the performance of a computer system)
What factors can affect a computer’s performance?
▪ Clock cycle/speed ▪ Width of the address bus and data bus ▪ Overclocking ▪ Cache memory ▪ Number of cores
What is meant by overclocking?
• Clock speed can be changed by accessing the BIOS.
• But, clock speed higher than that the computer
was designed for can lead to:
- Instruction is unable to complete in time before the next one is due to be executed → unsynchronised
operations
- Serious overheating of CPU → unreliable performance
What is cache memory?
- A type of high-speed RAM which is built into the CPU – faster access times
- Holds the most frequently used instructions and data for faster access
What is meant by number of cores?
- Dual core or quad core
- Doubling the number of cores does not imply improvement of computer performance b/c CPU needs to communicate with each core → reduces overall performance
What are computer ports?
▪ I/O devices are connected to computer via ports
▪ Interaction of the ports with the I/O devices is controlled by the CU
▪ Most common types of ports (on modern computers)
o USB ports
o HDMI
o VGA
What is the Universal Serial Bus (USB) port?
▪ An asynchronous serial data transmission method
▪ The standard method for transferring data between a computer and a number of devices
▪ Essentially, the USB cable consists of a four-wire shielded cable:
- two for power and the earth
- two used in the data transmission
+ of USB?
Devices plugged into the computer are automatically detected: device drivers are automatically uploaded
The connectors can only fit one way; this prevents incorrect connections being made
Has become the industry standard; considerable support is available to the users
Several different transmission rates are supported
Newer USB standards are backward compatible with older USB standards
USB 3.0 allows full duplex data transfer
Allows power to be drawn to charge portable devices
- of USB?
Present transmission rate is limited (less than 500 Mbps)
Maximum cable length is about 5 metres
The older USB standard (e.g. 1.1) may not be supported in the near future
What does the High-Definition Multimedia Interface (HDMI) port do?
▪ HDMI ports allow output (audio & visual) from a computer to an HDMI–enabled device
▪ Support high definition signals
▪ Replaced VGA
What is the Video Graphics Array (VGA) port?
▪ Analogue technology
▪ Supports 640x480 pixels
+ of HDMI?
Standard for modern televisions and monitors
Very fast data transfer rate
Improved security
Supports modern digital systems
- of HDMI?
Easy to break connection when moving
Limited cable length to retain good signal
5 cable/connection standards
+ of VGA
Simpler technology
Only 1 standard available
Easy to split signal and connect a number of devices from 1 source
Secure connection
- of VGA
Out-dated
Easy to bend the pins when connecting
Cables must be of high quality to ensure good signal
What is machine code?
▪ CPU only uses machine code, which is binary
(sometimes displayed on screen as hex)
▪ Each different computer type has its own set of machine code instructions
▪ Each machine code instruction performs a single task, e.g.: storing a value in a specified memory location
▪ Writing machine code:
- Time consuming
- Error prone
What is assembly language?
▪ Low-level machine specific programming language that uses mnemonics
▪ Structure of assembly – each instruction has:
- Opcode (operation code): identifies the operation to be carried out by the CPU
- Operand: identifies the data to be used by the opcode (not all instructions have this)
What does the assembler do?
- It translates each assembly language instruction into a machine code instruction
- It checks the syntax of assembly language – ensuring that only opcodes of the appropriate machine code instruction set are used
What are the 2 types of assemblers?
- Single Pass Assemblers
2. Two Pass Assemblers
What do single pass assemblers do?
▪ Puts the machine code instructions straight into the computer memory to be executed
What do two pass assemblers do?
▪ Produces an object program in machine code that can be stored, loaded and executed at a later stage
▪ The source program is scanned twice, so that labels in assembly can be replaced with memory addresses in machine code
What happens in the first pass of the two pass assembler?
!A symbol table is created (labels are added to the table along with the address, if the address is known)!
- Read the assembly language program one line at a time
- Ignore anything not required (ex comments)
- Allocate a memory address for the line of code
- Check the opcode is in the instruction set
- Add any new labels to the symbol table with the address, if known
- Place address of labelled instruction in the symbol table
What happens in the second pass of the two pass assembler?
!An instruction (/opcode/mnemonic) table is created!
- Read the assembly language program one line at a time
- Generate object code, including opcode and operand, from the symbol table generated in Pass 1
- Save or execute the program
What are some special features of the assembly language program?
▪ Comments ▪ Symbolic names for constants ▪ Labels for addresses ▪ Macros ▪ Subroutines ▪ Directives ▪ System calls
What is an assembly language macro?
▪ A group of instructions given a name (// subroutine)
▪ Need to be executed several times within the same program
▪ The statements are written once and called using the name whenever they need to be executed.
▪ Macro code is inserted into the source file at each place it is called
What are the two steps when using macros in an assembly program?
1: Defining a macro:
- The definition of a macro consists of three parts: the header, body, and terminator
MACRO The header
. . . . The body: instructions to be executed
ENDM The terminator
2: Invoking a macro by using its given on a separate line followed by the list of parameters used if any:
[parameter list]
What is a directive in assembly language?
▪ An instruction that directs the assembler to do something
▪ Not a program instruction; It is information for the assemble
▪ Instructs the assembler as to how it should construct the final executable machine code: directing how memory should be used or defining files or procedures that will be used
Examples of what directives do:
▪ Some tell the assembler to set aside space for variables
▪ Others tell the assembler to include an external source files
▪ Others establish the start address for your program
What is the difference between assembly instructions vs assembly directives?
▪ Assembler instruction generates machine code
▪ Assembler directive does not create machine code: it directs the assembler to perform certain actions during assembly phase.
Name the groups that a processor’s instruction set can be grouped into?
- Data movement
- Input and output of data
- Arithmetic operations
- Unconditional & conditional instructions
- Compare
What do data movement instructions do?
▪ Allow data stored at one location to be copied into the accumulator ▪ LDM ▪ LDD ▪ LDI ▪ LDX ▪ LDR ▪ MOV ▪ STO ▪ END
What do input & output data instructions do?
▪ Allow data to be read from the keyboard or output to the screen
▪ IN
▪ OUT ** No opcode
What do arithmetic operation instructions do?
▪ Perform simple calculations on data stored in the accumulator and store the answer in accumulator (overwriting the original data) ▪ ADD ▪ SUB ▪ INC ▪ DEC
Examples of unconditional & conditional instructions?
▪ JMP
▪ JPE
▪ JPN
▪ END
Examples of compare instructions?
▪ CMP
▪ CMI
What are the addressing modes?
▪ Absolute addressing ▪ Direct addressing ▪ Indirect addressing ▪ Indexed addressing ▪ Immediate addressing ▪ Relative addressing ▪ Symbolic addressing
What does absolute/direct addressing do?
▪ The operand refers directly to a memory location
What does indirect addressing do?
▪ The contents of the contents of the memory location in the operand are used
What does indexed addressing do?
▪ The operand is used to form an address:
operand + the contents of the Index Register (IX)
What does immediate addressing do?
▪ The operand is the actual value to be loaded
What does relative addressing do?
▪ The operand is added to the base address (current address) to give the actual address
What does symbolic addressing do?
▪ The operand is a label that represents the memory location
What does a logical left shift do?
▪ Logical left shift moves each bit in a word one/more bit position(s) to the left.
▪ Zeros are introduced on the right-hand end
▪ A left shift moves the bits to more significant positions (like multiplying by two)
!Does not preserve the sign of the word (positive or
negative)!
What does a logical right shift do?
▪ Logical right shift moves each bit in a word one/more bit position(s) to the right.
▪ Zeros are introduced on the left-hand end
▪ A right shift moves them to less significant positions (like dividing by two)
!Does not preserve the sign of the word (positive or
negative)!
What can arithmetic shift operations be used for?
▪ They can be used for dividing or multiplying an integer variable
What does a cyclic shift do?
▪ The digits dropped off at one end of a word are returned at the other end of the word (in a circle/loop)
▪ No bits are lost
How are logical shifts represented in assembly instructions?
▪ LSL n -> n places to the left
▪ LSR n -> n places to the right
▪ Shifts are always performed on the ACC
What does bit manipulation in monitoring and control aid in?
▪ In monitoring and control, each bit in a register or memory location can be used as a flag and would need to be tested, set or cleared separately
Example: act as sensors to detect when data has been processed
▪ Represented by 1 bit ➔ 8-bit register
▪ The instructions:
- AND used to check if the bit has been set
- OR used to set the bit
- XOR used to clear a bit that has been set
What is a bitmask?
▪ A bitmask is a way of accessing a particular bit
▪ The bitmask is a number which has 0 in all bits that we don’t care about, and a 1 for the bit(s) that we want to examine
▪ By ANDing the bitmask with the original number, we can “extract” the bit(s)