Assignment 3
Due 9/23 at the start of class
-
The shifter on page 96 only has two functions: shift right and shift left.
Modify it so that it can do four functions: arithmetic shift right, logical
shift right, shift left, don't shift. The shifting done in the book is logical
shifting: a 0 is placed into the S0 or S7 bit, depending on which way the
shift goes. An arithmetic shift left is the same as a logical shift left,
a 0 is placed into bit S7. An arithmetic shift right places D0 into
both S0 and S1: it is duplicating the sign bit.
-
Whatever is done in software can be done in hardware. On the PC, subtraction
is done in software, but the designers of the 8088 could have included a
subtraction unit in the CPU. It is very similar to the adder. One difference
is that the Carry lines are called the Borrow lines. There are other differences,
too.
-
Draw the circuit for a half-subtractor.
-
Draw the circuit for a full-subtractor.
-
The ALU on page 99 has four functions: A ADD B, A AND B, A OR B, NOT B. Redraw
it so that it has all of the old functions, plus A SUB B, A (just move A
through the circuit), A COMPARE B (test if A and B are equal), A ADD 1. If
you didn't do number 2, then just indicate an empty box for the subtraction
circuit, and indicate how it is selected, and what lines go into it. If you
did number 2, then you might see a way to simplify the ALU without including
a complete, separate circuit for subtraction (or maybe not). You might need
a large piece of paper for this one.
-
An SR latch can also be built from two NAND gates, instead of two NOR gates.
-
Draw such a circuit.
-
What are the normal states for S and R when the circuit is quiescent (not
changing)?
-
What are the states for S and R that should be avoided, because they make
the output of the circuit random?
-
The 4 X 3 memory of Figure 3-28 uses 22 AND gates and three OR gates. It
also has 11 lines. Suppose the circuit were expanded to 256 X 8.
-
How many AND gates would be needed?
-
How many OR gates would be needed?
-
How many lines would be needed?