Exam2 Review
Exam2 Review
Exam2 Review
Floating-Point Representation
32-bit floating point format. Leftmost bit = sign bit (0 positive or 1 negative). Exponent in the next 8 bits. Use a biased representation. Final portion of word (23 bits in this example) is the significant (sometimes called mantissa).
Example
Convert the following number;37.75 into floating point format to fit in 32 bit register. Convert the number from decimal into binary 100101.11 Normalize all digits including the fraction to determine the exponent. 5 1.0010111 x 2
0 0 0 0 0 0 1 0 1 0 0 1 0 1 1 1 00 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sign
EXP
Significant
Bus Transfer
S1 S0
S1 0 0 1 1
S0 0 1 0 1
Register selected A B C D
2 1
3 2
1 0
Register D
Register C
Register B
Register A
Question
What is the MUX size we use? How many MUX we need? How many select bit?
Memory Transfer
The transfer of information from a memory word to the outside environment is called a read operation The transfer of new information to be stored into the memory is called a write operation
Read: DR M[AR]
Write: M[AR] R1
Arithmetic Microoperations
A single circuit does both arithmetic addition and subtraction depending on control signals. Arithmetic addition: R3 R1 + R2 (Here + is not logical OR. It denotes addition)
Arithmetic Microoperations
Arithmetic subtraction: R3 R1 + R2 + 1 where R2 is the 1s complement of R2. Adding 1 to the ones complement is equivalent to taking the 2s complement of R2 and adding it to R1.
BINARY ADDER
BINARY ADDER-SUBTRACTOR
B3
B2
B1
B0
Always added to 1
HA
C S
HA
C S
HA
C S
HA
C S
C4
S3
S2
S1
S0
Shift Microoperations
Symbolic designation R shl R R shr R R cil R R cir R R ashl R R ashr R Description Shift-left register R Shift-right register R Circular shift-left register R Circular shift-right register R Arithmetic shift-left R Arithmetic shift-right R
Logical Shift
A logical shift transfers 0 through the serial input The bit transferred to the end position through the serial input is assumed to be 0 during a logical shift (Zero inserted)
R1 shl R1 R 2 shr R 2
Circular Shift
The circular shift circulates the bits of the register around the two ends without loss of information
Arithmetic Shift
An arithmetic shift shifts a signed binary number to the left or right An arithmetic shift-left multiplies a signed binary number by 2 An arithmetic shift-right divides the number by 2 In arithmetic shifts the sign bit receives a special treatment
Arithmetic right-shift: Rn-1 remains unchanged; Rn-2 receives Rn-1, Rn-3 receives Rn-2, so on. For a negative number, 1 is shifted from the sign bit to the right. A negative number is represented by the 2s complement. The sign bit remained unchanged.
R2 ashl R2
LSB
Rn-1
Rn-2
0 insert
Purpose of Chapter5
In this chapter we introduce a basic computer and show how its operation can be specified with register transfer statements.
Instruction Codes
A process is controlled by a program A program is a set of instructions that specify the operations, data, and the control sequence An instruction is stored in binary code that specifies a sequence of microoperations Instruction codes together with data are stored in memory (Stored Program Concept)
Op. Code : specify 16 possible operations(4 bits) Address : specify the address of an operand(12 bits) If an operation in an instruction code does not need an operand from memory, the rest of the bits in the instruction(address field) can be used for other purpose
15 12 11 0 15 12 11 0
Op. Code
Address
data
instruction
Not an instruction
Direct address
Occurs When the Operand Part Contains the Address of Needed Data.
1. Address part of IR is placed on the bus and loaded back into the AR
2. Address is selected in memory and its Data placed on the bus to be loaded into the Data Register to be used for requested instructions
Direct address
Indirect address
Occurs When the Operand Contains the Address of the Address of Needed Data. 1. Address part of IR is placed on the bus and loaded back into the AR 2. Address is selected in memory and placed on the bus to be loaded Back into the AR 3. New Address is selected in memory and placed on the bus to be loaded into the DR to use later
Indirect address
Effective address:
Effective address: Address where an operand is physically located
Computer Registers
Accumulator(AC) : takes input from ALU The ALU takes input from DR, AC and INPR : ADD DR to AC, AND DR to AC Note) Input register is not connected to the bus. The input register is connected only to the ALU
Data Register(DR) : hold the operand(Data) read from memory Accumulator Register(AC) : general purpose processing register Instruction Register(IR) : hold the instruction read from memory Temporary Register(TR) : hold a temporary data during processing Address Register(AR) : hold a memory address, 12 bit width
Program Counter(PC) :
hold the address of the next instruction to be read from memory after the current instruction is executed Instruction words are read and executed in sequence unless a branch instruction is encountered A branch instruction calls for a transfer to a nonconsecutive instruction in the program The address part of a branch instruction is transferred to PC to become the address of the next instruction To read instruction, memory read cycle is initiated, and PC is incremented by one(next instruction fetch)
Input Register(INPR) : receive an 8-bit character from an input device Output Register(OUTR) : hold an 8-bit character for an output device
Any bits other than 0111 and 1111 are called memory reference instructions 100 BUN (Branch Unconditional) 101 BSA (Branch and Store Address) 110 ISZ (Increment and Skip if Zero)
3 Instruction Code Formats : Fig. 5-5 Memory-reference instruction Opcode = 000 110 I=0 : 0xxx ~ 6xxx, I=1: 8xxx ~Exxx
15 14 12 11 0
I Opcode
Address
Register-reference instruction
15 14 12 11 0
15 14 12 11 0
I/O Operation
Symbol AND ADD LDA STA BUN BSA ISZ CLA CLE CMS CME CIR CIL INC SPA SNA SZA SZE HLT INP OUT SKI SKO ION IOF
Hex Code I=0 I=1 0xxx 8xxx 1xxx 9xxx 2xxx Axxx 3xxx Bxxx 4xxx Cxxx 5xxx Dxxx 6xxx Exxx 7800 7400 7200 7100 7080 7040 7020 7010 7008 7004 7002 7001 F800 F400 F200 F100 F080 F040
Description And memory word to AC Add memory word to AC Load memory word to AC Store content of AC in memory Branch unconditionally Branch and Save return address Increment and skip if zero Clear AC Clear E Complement AC Complement E Circulate right AC and E Circulate left AC and E Increment AC Skip next instruction if AC positive Skip next instruction if AC negative Skip next instruction if AC zero Skip next instruction if E is 0 Halt computer Input character to AC Output character from AC Skip on input flag Skip on output flag Interrupt On Interrupt Off
s0 s1 s2
Bus
7
READ
1
CLR
INR PC
2
CLR
INR
DR INR AC
3
CLR
4
CLR
LD
INR INPR IR
5 6
CLR Clock
INR OUTR
A 4-bit binary sequence counter (SC) to count from 0 to 15 to achieve time sequencing; > A 4x16 decoder to decode the output of the counter into 16 timing signals, T0, ..., T15
A digital circuit with inputs D0, ..., D7, T0, ..., T15, I, and address bits in IR (11-0) to generate control outputs supplied to control inputs and select signals of registers , bus.
START
Interrupts Enabled
Execute Instruction
Interrupt cycle
HALT
REGISTER-REFERENCE INSTRUCTIONS The 12 register-reference instructions are recognized by I = 0 and D7 = 1 (IR(12-14) = 111). Each operation is designated by the presence of 1 in one of the bits in IR(0-11). Therefore D7I`T3 r = 1 is common to all register-transfer instructions.
For example
B7 = 007 (in hexadecimal)., In binary this is equivalent to: 0000 0000 0111 (CIR) B6 = 006 (in hexadecimal)., In binary this is equivalent to: 0000 0000 0110 (CIL)
For example
B3 = 008 (in hexadecimal)., In binary this is equivalent to: 0000 0000 1000 (Complement E) B4 = 010 (Bi=bit in position i =4) in binary is 0000 0001 0000 (skip if positive)
5.6 Memory Reference Instructions Opcode (000 - 110) or the decoded output Di (i = 0, ..., 6) are used to select one memory-reference operation out of 7.
These two registers communicate with a communication interface serially and with the AC in parallel Each quantity of information has eight bits of an alphanumeric code
IO and Interrupt
Input Flag(FGI), Output Flag(FGO) FGI : set when INPR has information, clear when INPR is empty FGO : set when operation is completed, clear when output device is active (for example a printer is in the process of printing)
=0
=1
Interrupt cycle
Execute instruction
IEN =1 =1
=1
FGO =0
IEN R
0 0
Program Interrupt
Demonstration of the interrupt cycle : The memory location at address 0 is the place for storing the return address Interrupt Branch to memory location 1 Interrupt cycle IEN=0 0 256(return address)
PC = 1 255 256 0 BUN 1120 Main Program
Interrupt Here
Save Return Address(PC) at 0 Jump to 1(PC=1)
1120 1
Program Interrupt
Demonstration of the interrupt cycle : The memory location at address 0 is the place for storing the return address Interrupt Branch to memory location 1 Interrupt cycle IEN=0 0 256(return address)
PC = 1 255 256 0 BUN 1120 Main Program
Interrupt Here
Save Return Address(PC) at 0 Jump to 1(PC=1)
1120 1
Input
Load (7 lines)
SELA
MUX
MUX
SELB
MUX
A and BUS B
38 decoder A bus B bus
BUS ALU 3
SELD OPR
X 8 Decoder
Output
(a) Block diagram
SELA
SELB
SELD
OPR
2 MUX: select one of 7 register or external data input by SELA and SELB BUS A and BUS B : form the inputs to a common ALU ALU : OPR determine the arithmetic or logic microoperation
The result of the microoperation is available for external data output and also goes into the inputs of all registers
3 X 8 Decoder: select the register (by SELD) that receives the information from ALU
Encoding
SELA or SELB = 000 (External Input) : MUX selects the external data SELD = 000 (None) : no destination register is selected but the contents of the output bus are available in the external output
Example
(Example 2) 1. Micro-operation R1 R2 - R3 2. Control word Field: Symbol: Control word:
SELA R2 010
SELB R3 011
SELD R1 001
Symbol AND ADD LDA STA BUN BSA ISZ CLA CLE CMS CME CIR CIL INC SPA SNA SZA SZE HLT INP OUT SKI SKO ION IOF
Hex Code I=0 I=1 0xxx 8xxx 1xxx 9xxx 2xxx Axxx 3xxx Bxxx 4xxx Cxxx 5xxx Dxxx 6xxx Exxx 7800 7400 7200 7100 7080 7040 7020 7010 7008 7004 7002 7001 F800 F400 F200 F100 F080 F040
Description And memory word to AC Add memory word to AC Load memory word to AC Store content of AC in memory Branch unconditionally Branch and Save return address Increment and skip if zero Clear AC Clear E Complement AC Complement E Circulate right AC and E Circulate left AC and E Increment AC Skip next instruction if AC positive Skip next instruction if AC negative Skip next instruction if AC zero Skip next instruction if E is 0 Halt computer Input character to AC Output character from AC Skip on input flag Skip on output flag Interrupt On Interrupt Off
Register Transfer Statement Initial Values Instru 1 Instru 2 Instru 3 Instru 4 Instru 5 Instru 6 Instru 7
AC
DR
PC
AR
M[AR]
IR
0 0 0 0 0 0 0 0