Exp 8 Decoder
Exp 8 Decoder
COMBINATIONAL CIRCUITS
Decoder
The combinational circuit that change the binary information into 2 N output
lines is known as Decoders. The binary information is passed in the form of N
input lines. The output lines define the 2Nbit code for the binary information. In
simple words, the Decoder performs the reverse operation of the Encoder. At
a time, only one input line is activated for simplicity. The produced 2Nbit output
code is equivalent to the binary information
Truth Table:
The logical expression of the term D0, D1, D2, D3, D4,
D5, D6, and D7 is as follows:
D0=A0'.A1'.A2'
D1=A0.A1'.A2'
D2=A0'.A1.A2'
D3=A0.A1.A2'
D4=A0'.A1'.A2
D5=A0.A1'.A2
D6=A0'.A1.A2
D7=A0.A1.A2
A B C in S C out
0 0 0 0 0
0 0 1 1 0
0 1 0 1 0
0 1 1 0 1
1 0 0 1 0
1 0 1 0 1
1 1 0 0 1
1 1 1 1 1