170 likes | 351 Views
Arithmetic Circuits II. Anselmo Lastra. Overflow. Two cases of overflow for addition of signed numbers Two large positive numbers overflow into sign bit Not enough room for result Two large negative numbers added Same – not enough bits Carry out can be OK. Examples. 4-bit signed numbers
E N D
Arithmetic Circuits II Anselmo Lastra
Overflow • Two cases of overflow for addition of signed numbers • Two large positive numbers overflow into sign bit • Not enough room for result • Two large negative numbers added • Same – not enough bits • Carry out can be OK
Examples • 4-bit signed numbers • 7 + 7 • 7 – 7 • Generates carry but result OK • -7 -7 • 4 + 4 • Generates no Cout, but overflowed
Overflow Detection • Condition is that either Cn-1 or Cn is high, but not both
Multiplier • Multiply by doing single-bit multiplies and shifts • Look at combinational circuit to do this
Combinational Multiplier AND computes A0 B0 Half adder computes sum. Will need FA for larger multiplier.
Sequential Multiply • Imagine doing over time rather than in parallel • Bitwise multiply • Shift • Add • If we have time later in semester we’ll look at fancier multipliers
Contraction • Can implement other functions • Like increment, decrement • By using basic arithmetic circuits • Adder • And removing unused portions • This is called contraction
Example: Incrementing • Very common • Next address computation • Specialize an adder
Multiplication by Constant • What if constant is a power of two? • What is the circuit?
Multiplication by Pwr of 2 • Just wires • Division by pwr of 2 similar
Contraction Not Always Best • Sometimes it pays to rethink the function • Example of decrementer in book
Sign Extension • Changing size of number common in instruction sets • 16-bit immediate to register, for example • Can’t just add zeros (zero fill) • Would turn 4-bit -5 (1011) to 8-bit +11 (00001011) • Sign extend (fill with left digit) • 1011 to 11111011
We’ve Covered • Adders • Ripple carry • Carry lookahead • Subtracting unsigned numbers • New design for adder-subtractor • Signed numbers • Signed addition/subtraction • Multiplication – just basic • Modified Circuits