computer organization & programming chapter4 combinatorial components

22
Computer Organization & Programming Chapter4 Combinatorial Components

Upload: amie-hancock

Post on 31-Dec-2015

222 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: Computer Organization & Programming Chapter4 Combinatorial Components

Computer Organization & Programming

Chapter4

Combinatorial Components

Page 2: Computer Organization & Programming Chapter4 Combinatorial Components

Some common, useful combinatorial circuits

Multiplexor• Some number (power of 2) of inputs and some control inputs

• The current values on the control lines are interpreted as a binary representation of the number of one of the other inputs. That input is passed through to the output.

Demultiplexor• Reverse of the multiplexor

• Single input is routed to one of a number (power of 2) output lines, depending on the control lines.

Decoder• Takes an n-bit input number and uses it to select exactly one of 2n

output lines• note difference between demultiplexor and decoder• The selected output line will have a 1, not a selected input value.

Comparator• outputs a 1 if two input values are equal, 0 otherwise

Page 3: Computer Organization & Programming Chapter4 Combinatorial Components

Comparator

All the As represent one input word, all the Bs represent another input word. The output will be one only if the two inputs are the same

Page 4: Computer Organization & Programming Chapter4 Combinatorial Components

Mux (multiplexer) 2 -> 1

Page 5: Computer Organization & Programming Chapter4 Combinatorial Components

Mux 2 -> 1 implementation

Page 6: Computer Organization & Programming Chapter4 Combinatorial Components

Mux 4 -> 1

Page 7: Computer Organization & Programming Chapter4 Combinatorial Components

Mux 8 -> 1Abstract representation of a multiplexor. The circuit details are hidden, but the essentials are visible.

Page 8: Computer Organization & Programming Chapter4 Combinatorial Components

Implement a Boolean Function using Mux

Page 9: Computer Organization & Programming Chapter4 Combinatorial Components

Decoder 3->8

Page 10: Computer Organization & Programming Chapter4 Combinatorial Components

Decoder circuit

Page 11: Computer Organization & Programming Chapter4 Combinatorial Components

Decoder 4 -> 16

Page 12: Computer Organization & Programming Chapter4 Combinatorial Components

Implement a Boolean Function using Decoder

Page 13: Computer Organization & Programming Chapter4 Combinatorial Components

Shifter

C determines if the shift will be left or right.

Assume D = 10000110. Show exactly what passes through each gate, and what ends up in S.

Page 14: Computer Organization & Programming Chapter4 Combinatorial Components

Half Adder

Called a half adder because it does not do the whole job: it does not add a carry in.

Page 15: Computer Organization & Programming Chapter4 Combinatorial Components

Full Adder

Page 16: Computer Organization & Programming Chapter4 Combinatorial Components

Example – 4bit Adder

Page 17: Computer Organization & Programming Chapter4 Combinatorial Components

Example – 4bit Adder/Subtractor

Page 18: Computer Organization & Programming Chapter4 Combinatorial Components

ALU Slice

Page 19: Computer Organization & Programming Chapter4 Combinatorial Components

1bit ALUWhat happens if F= 11, A=1, B=1, carry in = 1

What happens if F= 10, A=1, B=1, carry in = 1

Note INVA (Inverse A), ENA (Enable A), ENB (Enable B)

Once we have the circuit understood, note the inputs and the outputs. We can hide the rest of the details in using this device.

Page 20: Computer Organization & Programming Chapter4 Combinatorial Components

8Bit ALU

Page 21: Computer Organization & Programming Chapter4 Combinatorial Components

Overflow

Page 22: Computer Organization & Programming Chapter4 Combinatorial Components

ALU with overflow detection