Solution Manual For Digital Logic and Microprocessor Design With Interfacing 2nd Edition by Hwang Chapter 9 Not Included
Solution Manual For Digital Logic and Microprocessor Design With Interfacing 2nd Edition by Hwang Chapter 9 Not Included
1.1.
General-purpose microprocessors: 1GHz to 3GHz.
Dedicated microprocessors: 4MHz to 50MHz.
1.7.
CPU Year Introduced Clock Speed Number of Transistors
8086 1978 4.7 – 10 MHz 29,000
80286 1982 6 – 12 MHz 134,000
80386 1985 16 – 33 MHz 275,000
80486 1989 25 – 100 MHz 1.2 million
Pentium 1993 60 – 200 MHz 3.3 million
Pentium Pro 1995 150 – 200 MHz 5.5 million
Pentium II 1997 234 – 450 MHz 7.5 million
Celeron 1998 266 – 800 MHz 19 million
Pentium III 1999 400 MHz – 1.2 GHz 28 million
Pentium 4 2000 1.4 – 3 GHz 42 million
1.8.
1.9.
module multiplexer (
input s, d0, d1,
output y
);
assign y = (~s & ~d1 & d0) | (~s & d1 & d0) | (s & d1 & ~d0) |
(s & d1 & d0);
endmodule
1.10.
module multiplexer (
input s, d0, d1,
output y
);
wire sn,d1n,d0n,a1,a2,a3,a4;
1
Note that many of the solutions are not unique and that there are other correct answers.
1
© 2018 Cengage Learning®. All Rights Reserved. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in whole or in part.
endmodule
1.11.
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
1.12.
----------------- NOT gate -----------------------
LIBRARY IEEE
USE IEEE.STD_LOGIC_1164.ALL;
ENTITY notgate IS PORT(
i: IN STD_LOGIC;
o: OUT STD_LOGIC);
END notgate;
ARCHITECTURE Dataflow OF notgate IS
BEGIN
o <= not i;
END Dataflow;
2
© 2018 Cengage Learning®. All Rights Reserved. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in whole or in part.
BEGIN
U1: notgate PORT MAP(s,sn);
U2: notgate PORT MAP(d0,d0n);
U3: notgate PORT MAP(d1,d1n);
U4: and3gate PORT MAP(sn,d1n,d0,and1);
U5: and3gate PORT MAP(sn,d1,d0,and2);
U6: and3gate PORT MAP(s,d1,d0n,and3);
U7: and3gate PORT MAP(s,d1,d0,and4);
U8: or4gate PORT MAP(and1,and2,and3,and4,y);
END Structural;
3
© 2018 Cengage Learning®. All Rights Reserved. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in whole or in part.