0% found this document useful (0 votes)
17 views17 pages

Combinational Circuits

The document discusses combinational circuits, focusing on adder/subtractor circuits, including half adders and full adders, along with their truth tables and logic diagrams. It also covers the implementation of these circuits using NAND and NOR gates, as well as the concepts of overflow detection in addition operations for both unsigned and signed numbers. Additionally, it introduces multiplexers, decoders, demultiplexers, and encoders, explaining their functionalities and providing truth tables and logic diagrams.

Uploaded by

kalesh167.uu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views17 pages

Combinational Circuits

The document discusses combinational circuits, focusing on adder/subtractor circuits, including half adders and full adders, along with their truth tables and logic diagrams. It also covers the implementation of these circuits using NAND and NOR gates, as well as the concepts of overflow detection in addition operations for both unsigned and signed numbers. Additionally, it introduces multiplexers, decoders, demultiplexers, and encoders, explaining their functionalities and providing truth tables and logic diagrams.

Uploaded by

kalesh167.uu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 17

Combinational Circuits

Adder/Subtractor Circuits: Circuits that can find the sum or difference of binary numbers.
Half Adder (HA): A circuit that can add two single-bit binary numbers
Inputs: Two single-bit numbers A , B ∈ {0 , 1 }
Output: R=A +B . Here +¿ represents arithmetic sum.
R is a two-bit number. R ∈{00 , 01, 10 }.
LSB of R is called the SUM (S), and the MSB of R is called the CARRY OUT (C o).

Truth table: Logic Diagram of a Half Adder (HA)


Inputs Outputs
B A R=A +B Co S
0 0 00 0 0
0 1 01 0 1
1 0 01 0 1
1 1 10 1 0
From the table it is evident that:
C o= A ⋅ B Half Adder (HA)
S= A ⊕ B

Exercise:
Implement the HA circuits using only NAND gates.
Implement the HA circuits using only NOR gates.

Full Adder (FA): A circuit that can add three single-bit binary numbers
Inputs: Two single-bit numbers A , B ,C ∈ {0 , 1 }
Output: R=A +B +C . Here +¿ represents arithmetic sum.
R is a two-bit number. R ∈{00 , 01, 10 , 11}.
LSB of R is called the SUM (S), and the MSB of R is called the CARRY OUT (C o).
Truth table:
Inputs Outputs
C B A R=A +B +C Co S
0 0 0 00 0 0
0 0 1 01 0 1
0 1 0 01 0 1
0 1 1 10 1 0
1 0 0 01 0 1
1 0 1 10 1 0
1 1 0 10 1 0
1 1 1 11 1 1

K-map for S K-map for C o

BA 00 01 11 10 BA 00 01 11 10
C C
0 0 1 0 1 0 0 0 1 0

1 1 0 1 0 1 0 1 1 1
S cannot be simplified.
S= A ⊕ B ⊕ C C o= AB+BC + AC
Note S=1 when odd number of inputs are 1

Logic Diagram of a Full Adder (FA)

Full Adder (FA)

Implementing a Full Adder using Half Adders:


S= A ⊕ S 1=A ⊕ ( B ⊕ C )= A ⊕ B ⊕ C

C O=C O 2 +CO 1
¿ A ⋅ S1 + B⋅C
¿ A ⋅ ( B⊕ C ) + B⋅ C
¿ A BC + A BC + BC
¿ A BC + BC + A BC + B C
¿ B ( A C +C )+ ( A B+ B ) C
¿ B ( A +C ) + ( A+ B ) C
¿ AB+ AC + BC

Ripple Carry Adder: A multi-bit Adder Circuit

A3 A2 A1 A0
+ B3 B2 B1 B0
Co S3 S2 S1 S0

Adder/Subtractor Circuit:
When
ADD / ¿ ¿ = 0
Circuit adds B to A

When
ADD / ¿ ¿ = 1
Circuit subtracts B from A

Explanation:
X ⊕ 0=X
X ⊕ 1= X (XOR gates are called controlled NOT gates or controlled inverters.)

When ADD / ¿ ¿ = 1, the XOR gates inverts all the bits of B.


Thus, we get 1’s complement of B at the output of the XOR gate.
S= A +1' s complement ( B ) +1
'
¿ A+2 s Complement ( B )
¿ A−B

When ADD / ¿ ¿ = 0, the XOR gates do not change the bits of B.


Thus,
S= A +B+ 0
¿ A+ B

Exercise:
Draw the truth table of a half-subtractor that computes X −Y . Find the simplified expressions for the difference ( D )
and borrow ( Bo) outputs. Draw the logic diagram of the half-subtractor.
Draw the truth table of a full-subtractor and find the simplified expressions for the difference ( D ) and borrow ( Bo)
outputs. Draw the logic diagram of the full-subtractor
Prepare a full-subtractor using two half-subtractors and one OR gate. Justify mathematically how it works.
Prepare a 4-bit adder/subtractor circuit using full-subtractors and controlled inverters.

Note:
The carry output of a full-adder is fed as an input to the next full-adder (i.e. corresponding to the next significant bit).
Thus, the sum and carry of a full-adder cannot settle down until all the previous sum and caries are settled down.
Suppose each full-adder takes τ amount of time for its sum and carry to be settled to the desired value. Then a n-bit
ripple-carry-adder needs nτ amount of time to get the final result. Thus, this circuit works slower as the number of
bits increases. Later we shall study a fast adder circuit known as the carry-look-ahead adder.

Overflow and sign:1


Consider a n-bit adder circuit. The adder circuit works for both unsigned and signed numbers unless the sum
overflows.
(1) For unsigned numbers:
A and B are within the range from 0 to 2n−1 .

1
This is a slightly advanced topic
A+ B should also be less than or equal to 2n−1 .
If A+ B is larger than 2n−1 , then the result overflows (and we cannot get the desired result).
Overflow can be detected (identified) by looking at the carry output from the MSB.
When overflow occurs carry output from the MSB becomes 1.

(2) For signed numbers:


A and B are within the range from −2n−1 to ( 2n−1−1 ) .
A+ B should also be within the range from −2n−1 to ( 2n−1−1 ) .
If A+ B is outside the range, then the result overflows (and we cannot get the desired result).
Overflow can occur only if A and B are of the same sign (positive or negative).
When overflow occurs addition of two positive numbers results in a negative number or vice-versa.

Overflow can be detected (identified) by looking at the carry output from the MSB and second MSB.
Overflow detection circuit: (we leave the justification to the reader):

OverFlow = XOR (Carry from MSB, Carry from second MSB).

When Overflow occurs, the result does not contain the true sum.
But we can always find the sign (positive or negative) of the true sum as
TrueSign =XOR (Overflow, sign-bit of the result)
Multiplexers (MUX)
2-to-1 Multiplexer:
Inputs: Truth table
(1) Data inputs (d 0 , d 1) s d1 d0 z
z (2) Select input (s) 0 0 0 0
Output: z 0 0 1 1
0 1 0 0
Rule: 0 1 1 1
When s=0, then z=d 0 1 0 0 0
When s=1, then z=d 1 Analogous to a toggle switch 1 0 1 0
1 1 0 1
Symbol
1 1 1 1
Logic diagram:
d 1 d 0=00 d 1 d 0=01 d 1 d 0=11 d 1 d 0=10
s=0 0 1 1 0
z
s=1 0 0 1 1

z=s d 0 + s d 1

Using 2-to-1 MUX as a NOT gate Using 2-to-1 MUX as a AND gate Using 2-to-1 MUX as a OR gate

1 0 y
z z z
0 y 1

x x x
z=s d 0 + s d 1=x ⋅1+ x ⋅0=x z=s d 0 + s d 1=x ⋅0+ xy=xy z=s d 0 + s d 1=x y + x 1=x + y
Thus, multiplexers can be used as universal gates.

2n-to-1 Multiplexer:
Inputs:
(1) n-number of select inputs ( sn−1 , … , s 1 , s 0)
(2) 2n−1-number of data inputs (d 0 , d 1 , … d 2 −1)
n

Output: z

Rule:
Suppose, the binary number represented by sn−1 , … , s 1 , s 0 is k .
Then z=d k.

Symbol

Logic Diagram of a 22 to 1 MUX:


Decoders
1-to-2 Decoder: Input: A Truth table
Outputs: D 0 , D 1 A D1 D0
0 0 1
Rule: 1 1 0
When A=0, then only D 0=1 , other outputs are zero.
Symbol When A=1, then only D 1=1 , other outputs are zero.

Thus, only one of the outputs is 1, at any time.


n-to-2n Decoder: Input: An−1 , … , A 1 , A0
Outputs: D 0 , D 1 , … D 2 −1
n

Rule:
Suppose, the binary number represented by An−1 , … , A 1 , A0 is k .
Then D k =1, other outputs are zero.
Thus, only one of the outputs is 1, at any time.

Recall minterms m 0 , m1 , … .
Note:
Dk =mk ( A n−1 , … , A 1 , A 0 )

n-to-2n Decoder with Often there may be an additional input called Enable (EN)
Enable input: Rule:
When EN=0
All outputs are zero (irrespective of the inputs An−1 , … , A 1 , A0 )

When EN=1
Suppose, the binary number represented by An−1 , … , A 1 , A0 is k .
Then D k =1, other outputs are zero.
Logic diagram of a 2 to 4 decoder: Truth table
E A1 A0 D0 D1 D2 D3
N
0 0 0 0 0 0 0
0 0 1 0 0 0 0
0 1 0 0 0 0 0
0 1 1 0 0 0 0
1 0 0 1 0 0 0
1 0 1 0 1 0 0
1 1 0 0 0 1 0
1 1 1 0 0 0 1

D0=EN ⋅ ( A 1 A0 )
D1=EN ⋅ ( A1 A 0 )
D2=EN ⋅ ( A1 A 0 )
D3=EN ⋅ ( A1 A0 )

Combining two n-to-2n decoders to form a (n+1)-to-2(n+1) decoder


Any Boolean function can be implemented with a decoder and an OR gate.
Example: Given z=( w+ x ⋅ y ) ⊕ ( x + y )
Solution:
Truth table: (We did it earlier) Circuit:
w x y z
0 0 0 1
0 0 1 1
0 1 0 1
0 1 1 1
1 0 0 0
1 0 1 1
1 1 0 0
1 1 1 0
Z=∑ (0 ,1 , 2 ,3 , 5)
m

Demultiplexers
1-to-2n Demultiplexer: A demultiplexer is functionally opposite to a multiplexer
Inputs:
(1) n-number of select inputs ( sn−1 , … , s 1 , s 0)
(2) 1number of data inputs (i)
Output: d 0 , d 1 , … d 2 −1n

Rule:
Suppose, the binary number represented by
sn−1 , … , s 1 , s 0 is k .
Then d k =i. All other outputs are zero.

A demultiplexer is functionally identical to a decoder


Symbol with an EN input:
i≡ EN
sn−1 , … , s 1 , s 0 ≡ An−1 , … , A 1 , A0
d 0 , d 1 , … d 2 −1 ≡ D0 , D 1 , … D2 −1
n n

Encoders
n
2 -to-n Encoder: An encoder is functionally opposite to a decoder.
Input: D 0 , D 1 , … D 2 −1
n

Outputs: Q n−1 , … ,Q 1 , Q0

Constraints: At any moment, exactly one of the 2n inputs will be 1 (logic HIGH),
remaining inputs being 0 (logic LOW)
Rule:
Suppose, D k =1
Then Q n−1 , … ,Q 1 , Q0 will represent the binary equivalent of k .

Priority Encoders
n
2 -to-n Priority Encoder: A priority encoder is similar to an encoder; however, it allows any number of the
inputs to be HIGH simultaneously.

Input: D 0 , D 1 , … D 2 −1
n

Outputs: Q n−1 , … ,Q 1 , Q0, and DV (Data Valid)

Rule:
(1) If none of the inputs is HIGH then DV (Data valid) will be 0.
(We don’t care about the other outputs)
(2) Suppose, k is the highest (or lowest) number such that D k = HIGH
Then Q n−1 , … ,Q 1 , Q0 will represent the binary equivalent of k .
And DV (Data valid) will be 1.

Example: Prepare the logic diagram for a 8-to-3 (ordinary) encoder.


Truth table: Logic Diagram:
D7 D6 D5 D4 D3 D2 D1 D0 Q2 Q1 Q0
0 0 0 0 0 0 0 1 0 0 0
0 0 0 0 0 0 1 0 0 0 1
0 0 0 0 0 1 0 0 0 1 0
0 0 0 0 1 0 0 0 0 1 1
0 0 0 1 0 0 0 0 1 0 0
0 0 1 0 0 0 0 0 1 0 1
0 1 0 0 0 0 0 0 1 1 0
1 0 0 0 0 0 0 0 1 1 1
For all other (invalid) input combinations X X X
Q2=D 4 + D5 + D6 + D7
Q1=D2 + D3 + D6 + D7
Q0=D 1+ D3 + D5 + D7

Example: Prepare the logic diagram for an 8-to-3 priority encoder where the data input with highest index has the
highest priority.
Truth table:
D7 D6 D5 D4 D3 D2 D1 D0 Q2 Q1 Q0 DV Functions that uniquely identify the input
combination
0 0 0 0 X0 X X0 0 0D7 D6 D 5 D4 D3 D2 D 1 D0
0
0 0 0 0 00 0 00 1 0D7 D6 D 5 D4 D3 D2 D 1 D0
1
0 0 0 0 −¿ 0 0 1
0 0 1 1D7 D6 D 5 D4 D3 D2 D1
0 0 0 0−¿ −¿ 0 1 00 1 1 D7 D6 D 5 D4 D3 D2
0 0 0 −¿ −¿ −¿ 0 1 1
0 1 1 D7 D6 D 5 D4 D3
0 0 0 −¿ −¿ −¿ −¿ 1 0 0
1 1 D7 D6 D 5 D4
0 0 −¿ −¿ −¿ −¿ −¿ 1 0 1
1 1 D7 D6 D 5
0 1 −¿ −¿ −¿ −¿ −¿ −¿ 1 1 0 1 D7 D6

− Indicates both the cases corresponding to 0 and 1 inputs


1 −¿ −¿ −¿ −¿ −¿ −¿ −¿ 1 1 1 1 D7

X Indicates don’t care, we can choose either 0 or 1 as the output depending on our convenience.
Q2=D7 + D7 D6 + D7 D6 D5+ D7 D6 D5 D4
Q1=D7 + D7 D6 + D7 D6 D5 D 4 D3 + D7 D6 D5 D 4 D3 D2
Q0=D 7+ D7 D6 D5 + D7 D6 D 5 D4 D3 + D7 D6 D5 D 4 D 3 D2 D1

DV =D7 D6 D5 D 4 D3 D2 D 1 D0=D 7+ D6+ D5+ D4 + D3 + D2 + D1 + D0


Logic Diagram:

https://www.falstad.com/circuit/circuitjs.html?ctz=CQAgjCAMB0l3BWcMBMcUHYMGZIA4UA2ATmIxAUgpABZsKBTAWjDAChpaAdAZwBcA9rzCFeAEQYBjAQBMGAJ3AhC4FSggBBKmHJUUIDRDB4l+jfrDEQ+s-
TQg7IMdqgOnEC27FhtRqvW8jCwgAsAt6MK8wCJpwelDYsCQwWNDklSSvfUcA+lSvWKR8sSQVJACVchUA8hNyAJMrEwCrHxAregBRADlrIyR9CQBZAFcAGz4ASwAHMYYADwVOsYBbYV4UXmxeGl4EXlEeDF48XmJhSGEwYU2eaOFdu-
27w51hU7vznjQNiEudtg0NpMBAoEwpWJMGg0Zr2CCPQTCQ4SaRyRSXHg0NhJfQsaEgHAqPGxPDYfTaFRUBBsADuIBYKkIGFxInA+MgtPpuES+IZbNiHLpmAsvNZEKgnKYZOUzK5FgwlMlMJluOVaBMgvphFiTNx2usNComqYeCouvppussuNxEZsqYtockAFktY+nNLEi2GwirpUud4AVcsDvq5AfV9LV+Alfu5BqoTH1KENMbDsWF
Fr01slcbjDuqAeNuZ99LdDhLRYDPpMLDBDkIGtdderpbr5uNIjN9s7tDgqYZVENCbjQ-7I+lLCDdHJrqnE50dpnfozHpXyf7a8hccI68rhWIuJQCDKB43x4op6YR8XG5Tq5Tx6NkuTVMIw4Dj7HH7rV-XoMby5-
j+KDru2z7Rqu0Y0I6xoRtBRIjjBOYBjQ+osKeqEun6lj6JhpanmBdKOnhjqEfhuH6sR+qapa8H0nBSF0pa5q0YxyiFG2OrZoBHEmPq-6psqn5Xg+b6CXxspCWJmrSggp7SmRV7nnJ2T6CpqasjukKbhpN6abunJltO4CRIpC60NKRnSpqYQmKOA69k+dK2Sq4B1qONliS2PZmc2DaqP4-
kdl6Jbmd6ob5k6iTyYWkqWhmEYZsaSYpiB6YpsaUYmC+1jRkW8pqOe5k2UG5phRWhkEbKOFRamEbmol3HWKBsppfGdV3q1qV5Zy16uX1xW9bKDXVey2KgvyBKhfipLkqorjUjiFn6ISy0gLNriskg1J0p+5qfuKmoIPi+34oNu1trKAkRkdplXZEOWanR5p0UlnIwl2uGWnGT36i9+rhXVRVBsdiRBpqOURtdPVCuuOUIA9GW9dGGa
vU1NUjt9sXOUGgN4YDnmBXZyotk9JP+dCElLrQmmSayHnvfTfYuQzzmRMZo7GU9fYc32ZHbrK24GXSQuJIywsOGp8n2OpMky9Ln2poD5qA5+Mklp+UlOexFDNhNAkyfrevuk1LYqxTbEtnRrGhlRqR4LEeEyQ7tAAy7ZEHfiGaHeNK32KtzJUBtFLUDt63Kixyo+0xCmyht53rbT+h4KyN2cqaisZ+1moYO7sq5+mTUKlTBL+T9nIYBN5
qV9kFW7WdQbx+DnLQyYKdqDDFCI0HfaPe9joZgXVrUx9tXF7Vv2pCWNflqGlP1nUJakxXS-+atZEYAG1coX2Oc74OTPa5zCl4HZ1mcg2Z-uqfrlHVVUvuhL6labVL9y1SBHRrLF9f5-Jeai-c0L81YXz-
F5DW0lOTYCNnxB8dYAFwNgYrAB54gHnjoiglQdEraWxdnhf6WFXL4OGk1B24J8SexdIaEkEc47KlWkaWAhBojKGgDgVwAAzAAhmMHgDBAQBnbq5IRDCoBMJYYQNh9AqDcN4fw6hBI84rRdqImAkBmH0EkewmRPC+ECNiDPauE1VHiM0VIzhuj5EBk3lxFa1iKxiPURI8xOi5H6IoGJfaYkTFOLMdokAsi9EKIRibNSkQfEaNYf4wJV
jHakUko6CJzjomWPcfPF69CHFqMiVo6RATUkKKBDeIpU1KSOJyS4-JbiFGRQ9IkrJpiol5Jie4z0oTSzhIab4ppFjqkBlrCXAZpTXDZOSc0gp-SfLdm8V0ipKS+mQnMh6cySS-
HjIWdYVBrVzyrJ6a4oJ4ZOo2BTLs3JvSDnphajYdcpzKktIUfVVq0ZbnzIuSZdpZYXnrL0fMEy7QMAQAQNgCAZBHYGhAAAJQAPJDF4NIAAdhwyYABzEY8gGAyF4FwngWLeAACEADCYheCIj4fMSQDAeA8ClHCgQ8KABuCg+AKDYAAGXpAJcUIIxKHXOQwagHJ2UgjrOZbl2hwZ8oFWyjldYIxityhqSVSBBUyuyimeVj0lX9nFBtYk7R4
GGRmpZGabFjIbTNdRNgvziC4HWtA9oCAkCkjsuCgAXhya1tq8AkAdU6ySbr2CepBX2Yg55iCQDyG6lAVr2jAtjbEUNKgbXkHSiAV12BpXCr4uueVb8lAxKlUMAk9gNrEEiMHaw0BqRFotQm8t1FK3VsmngR0Zbk4wUbWwIteqDyNEiL21wKAq1sCAA
https://www.falstad.com/circuit/circuitjs.html?ctz=CQAgjCAMB0l3BWcMBMcUHYMGZIA4UA2ATmIxAUgpABZsKBTAWjDAChpaAdAZwBcA9rzCFeAEQYBjAQBMGAJ3AhC4FSggBBKmHJUUIDRDB4l+jfrDEQ+s-
TQg7IMdqgOnEC27FhtRqvW8jCwgAsAt6MK8wCJpwelDYsCQwWNDklSSvfUcA+lSvWKR8sSQVJACVchUA8hNyAJMrEwCrHxAregBRADlrIyR9CQBZAFcAGz4ASwAHMYYADwVOsYBbYV4UXmxeGl4EXlEeDF48XmJhSGEwYU2eaOFdu-
27w51hU7vznjQNiEudtg0NpMBAoEwpWJMGg0Zr2CCPQTCQ4SaRyRSXHg0NhJfQsaEgHAqPGxPDYfTaFRUBBsADuIBYKkIGFxInA+MgtPpuES+IZbNiHLpmAsvNZEKgnKYZOUzK5FgwlMlMJluOVaBMgvphFiTNx2usNComqYeCouvppussuNxEZsqYtockAFktY+nNLEi2GwirpUud4AVcsDvq5AfV9LV+Alfu5BqoTH1KENMbDsWF
Fr01slcbjDuqAeNuZ99LdDhLRYDPpMLDBDkIGtdderpbr5uNIjN9s7tDgqYZVENCbjQ-7I+lLCDdHJrqnE50dpnfozHpXyf7a8hccI68rhWIuJQCDKB43x4op6YR8XG5Tq5Tx6NkuTVMIw4Dj7HH7rV-XoMby5-
j+KDru2z7Rqu0Y0I6xoRtBRIjjBOYBjQ+osKeqEun6lj6JhpanmBdKOnhjqEfhuH6sR+qapa8H0nBSF0pa5q0YxyiFG2OrZoBHEmPq-6psqn5Xg+b6CXxspCWJmrSggp7SmRV7nnJ2T6CpqasjukKbhpN6abunJltO4CRIpC60NKRnSpqYQmKOA69k+dK2Sq4B1qONliS2PZmc2DaqP4-
kdl6Jbmd6ob5k6iTyYWkqWhmEYZsaSYpiB6YpsaUYmC+1jRkW8pqOe5k2UG5phRWhkEbKOFRamEbmol3HWKBsppfGdV3q1qV5Zy16uX1xW9bKDXVey2KgvyBKhfipLkqo1DUjiFn6ISy0gLNrislSnKfuan7ipqCD4nt+KDXSAl7XWEaHaZsoIJEOWanR5p0UlnIwl2uGWnGT36i9+rhXVRVBkdiRBpqOURgJ129euOX3TYGW9dGGa
vU1NUjt9sXOUGgN4YDnmBXZyotk9JP+dCElLrQmmSayHnvfTfYuQzzmRMZo7GU9fYc32ZHbrK24GXSQuJIywsOGp8n2OpMky9Ln2poD5qA5+Mklp+UlOexFDNhNAkyfrevuk1LYqxTbEtnRrGhlRqR4LEeEyQ7tAAy7ZH7fiGYHeNK32KtzJUBtFKuNSTHKixyo+0xCmyhtZ3rbT+h4KyMNMXzcd9o9nIYO7sq5+mTUKlTBL+T9OcTea
GATQTO2nUG8fgztV3Rinag9edD0pqaehI3SaMrS7b391jsTF7Vv2pCW1fZBV-fk3UJakznS-+atZEYAGVcoX2mqb47PNM9rnMKXgdnWZyDbn+6Z+uYdVVS+6EvqVptWv3LVIEdGsuX9-X8l5qV+5pX5q0vn+LyGtpKcmwEbPiD46yAPgXAxWgDzzAPPHRVBKg6JW0ti7PC-
0sKuQIcNJqDtwT4k9i6eYJl2gYAgDuCAZBHYGhAAAJQAPJDF4NIAAdgAM0mAAcxGPIBgMheAAEMeBSN4AAIQAMJiF4IiHgCiACekgxiTEkLwAA4vISR6jeAKNkAwHhAheEADcFB8AUGwAAMvSAS4oQRiQOkofhkixg8AYNQDkTiQR1nMm47Q4NPHeN8f4xxziW41k-NdCJPi-
FIACbE7KKZQntSNCALxyTonYRmvOfEB4AKTXjjNNixkNrVOomwGhxBcDrRge0BASBSR2VYQALw5A0ppeASCtPaZJbp7A+lML7MQc8xBIB5G6Sgep7RsBMOwLEKZKhGnkHSiALp2AYlBL4uuLJ78klRNSWwIYBJ7AbWIJEYO1hoDUkubUtZdzqIPKeeUx0tzk4wQ+Rc0sJS6w-PaAg-
5hoSTSlWhtdsUBYCEGiMoaAOBXB5N8YCAMbcpoqCxbCmAkAEX0EIMi+gVA0UMAxWPfyVc14VjhQSxFxKUVksiRSiFBJK75wmqtI08LGUktRayylyhb7ANvjy+lhKkXMtyUK9lwDSErTpfiqVTLSWyuScKoBw11wSpVfymV5KtUQWGtGPVfKiUCpZZq9lF07p1nNQyy1hq5UflumpSIjrVVWo1ei9lz1JKOi9Qa9VRr-
XMUkpaYNzrQ2uvtlxbILto3StjTaqs1LBa0spJKkNgq02pE5dkblyqLUprzX6qsJYVbTxLU6st1qK3aUVfRfOtbvUuvzfRNB9o+rJrVeWtlAYRKK2Hdi1w+qY0DuFQ5D0PY+0+rDUO8ys6gzzo7Y28irl0JKuzRO+tvrB3aRNYeM1bbc0NsPfRFqh5dVnsnRe4VLkyoOrvfuxdiR3UmR3eO0t-aH3stIrKINr6-
0HuFRG5OVA12po3T5aqYloNTvZcu6qq6QMLrjeAB+WHv28rraB99uUS4RkQw+oAA
https://www.falstad.com/circuit/circuitjs.html?
ctz=CQAgjAbCAMB00IQVnHATAtB2LBmaAHGhAJwlYhLSUgAsulApgLRhgBQsdAOgM4AuAez6Q+AEUYBjQQBNGAJ3AgokEGjAgAgtTAVqaLRrAElBzQbAk11zQwwg7IMTpgOnGi27FgdR6g28jCw0AsAsGMK8wCNpwBlDYsBQwWNDklRQAg0cAhlSvWJR8sRQoTKcoCigAihMKAJMrEwCrHxArBgBRADk1IxQDCQBZAFcAG34
ASwAHMcYADwVOsYBbET40Plw+Wj4kPgg+LD4CPhIRaBEwEU3eaJFdu-
27w7vju9O7894MDY1LnbsWhtZhINAmFKxZi0WjNewaR5CESvCTSOSKS68WjsADuIGY+ESMPx2AsxOg7HmJKQUBI0GySFidKKaliACUAPJDPjSAB2ADNJgBzEbyRgyPgAQ14Ur4ACEAMJiPhI3gKgCekjGk0kfAA4vJJeq+ArZIweYJeQA3BT8BTsAAy+LBEOJoIgOnJSn5krGvEYNApTtB4PAWCg7p04dcGh9foDKCDztDGBMkbUhBjI
Dj-sDjuTJjQtGo6aL1HL2d9ucTlMoEAMECwKCQBCqWBMsSLIAAXhSqTSDFhoFYWxQsJFO7Fuxx+xAGFhi5QCHV6HRWT20LWafOF0u6jg113u7h8yGTPWoTTqBeszmEzB2EM6AhlFgDIzYo2DPpYEhHxm6mgQpiSHWIfz-J9VDwMoQNwKBwP-
Vho3DEwPxAFDXDQX92BkEk33AD0SS7SB9BAOQfXGfhcTwixCOYUlwHJaj6PwywDBYixowpXCOPAEh2LQYj+OscjJUo5jCTDCMGN0eDmIYwSoQUzNuJotQu3ortFJExgKImCSgIAtTUwfPFeLQGljMXVTzMszTO0sgxRPEszJLLKzywM1IIDTBi4JMGy-
IIJSu1wYKdL0qizKCpT8P80z8Uk3A4LU5K5J4vywSI1Isqc3SxP06K4qy3i0oSglDMk0rDMCuL7Hshx7DyyL5Lqks-Jq1qDHBXz8IY2ruuXbK1CG5qCqixLDIY8z8IpVzDJdNTFoGyg3W0tCxvE4sQuAqFZNWsCYHgCBomUWA8FcO8uoOpbQzmpbo14q8H224akEe-
b3vgo7oBOhgIHOhhqCujL8K+t7o02wrJsKOiGOe+7eI9Xr32EilXoa5H8X2rHy2O06AYu4Gq0YHC1KxzHMyhiaKsKYSnrR66IEXJGu3RwzMZZnHrJ+v6zqJyt4zJpGWe05nSOc6HaeUDSGJvRHJNoEhpPwpX0qWyIGqQSJqaBDn1s1z7Ijx36CcBy6Seu7WBNV5XysV5m1NoR2VthdquzdiLxr1na6AIEt9s9k2+cJoHBf9a7Pd452wK8uhc
Btgx6G-YWGJhXyPdhL2tv1zO00DrPg7NgWrqKpOs+jhPyrT1Ro5fdnfeBCNA9UIv-vN4mhdBpPa+0pvs6lxWXzrzyzP2kjsejNjyvH+n9u0xH540+fLMXyG7Pnoa16gHrJ+qext8agPo1wLLD9P9j9rC2Ox5P8KkKgfvD-7h+6EL5iC-z6Mg4-7--b3ygxtf5lENtGNCh80Kv3BhAj6YDGa3zKHPaM4sZ7IK5shHyD5FCvwwq-
AgVcdCIAQOwIUAD8GX2jMFAK1dWJujYGSG+al9qsEiPtRGyl846xUtddyLDurWR4fhPhahZrXSqvQhwnUy4OBSsIsq7C4qYLkZghRSdh4SOLKPJ2VdhHJxoUnR2uiXaRztrou2qjKChmEctK2dEJEIytnPSISB4Hk2XpEeWzF-43m8WzLx1AXEGH-oE8qwTCJhK0cwYJoZokBX8XQO2-81ahOoDHEASTjFmSSVXbJKcsmpJfEk+u8T4r-
3iojMpKVKlyXyZI2IZSpH4n-gxZpojanuWaQI9pmZmncNqftf+bD4mQnSZ6WOpDVDkIIukwuWDpkYUmQQ1ARDqKqBQVBFK91VAhLWV06Z4NtmuO2cSbZXFVkgNojdLZj9BkXISqodO0yf54geaoB578XnVHCq8mp0yL5-PCtco+fyz7nJGhCfeWjVAWRUDvLeYLtLQtXmC6e0K-
GfIIjoFQrjdHDyKZ5HiSTa5V37rrDGJK3mP1brzYuYdS5NNSbXfFKS35plyS9DmJKs7vOoXAU27cS6W0JakiuXLCxkXyi5bGE4dHsoqak-
+UTUnGPJUnW5fsKx8pDh3cOpNhUasSmqiWkqpYaMMRkxhSrAHsSSeYn2hrrX7ONjSgVdKhUMsdQSd8OsJUtTHhOUxtrfnCJvFazx+qUFeuUIuXWtTI2+MtfY+mwTGYRszFGrGsaPUUxTXk6V746IRIfPq8GUbwZZqtaWot8qbqVrusLYJboq4bV9d7f174rGxJnjrIRrSU76t3lG3eZLOWDQheC1wWraUWyFu0oaVr+olPqg02Oqrg
WqATpq-GrqZ0R31Zuh1B6K0SKqiull-yrXyPtVG-5G6z4uv5m6ruHqL1V3+ceyIZVL2bJKffMpKjr1vu+V8w6U6d2dz3S+++QHOytqlcotl-
gAPttZCWTpBKPUwodVhitzS7Loe7d1dNvS4kDo0lXbSuH9AaRI4RqSHqhn6unlG6eVG+I2qjMG25aGxnFoY3RKuE8P0MIY0xF5HitL4U8eJ1G3UwZHOcYReGhEtnOJTGDetMmEk71tr8s1nZVaZPADKuTScCGrInC+NOxStPxT8sh4z2QUp+R-bZqacVGkSIUn1NpjnUMiP4VCrhhY+p9L8-
PViZytMjJkkxUhJkpkJdmRSRQJkMIJaWT4FZeITIoLS40kyITct7MK5DTMIT7qFeJKV35hXgtXOoiZT2dW81Nazk1-+lXMyku6x8oy18jJP0a5md9I3AXDbhPoEboKctU1GiNg+E21COTm3E2bhYtJU2Ret9jRkF5LaE5mae91mUaOKbhDRlLGU7zg9DS7KhLNBfLhCEzfGNHcsIo8rN7KNHma057fTHLEifdo0HB9odd16r8wDkHxq-
WjLoI7QHqnvXBCTna16E9rZGWx23R9kOyb2NYYRbH33Ul2w0XavECa-Phtp4uCeeXbsTQkesiTjDc1+Yq4TjxR3CKZuZxZhsR3nGuKLfYlTPP3xTxJ5DQXmPZc73K1xcHOr6X2Knopp7N17H1oVwE6r5WvRgfxxBqH9iTkk+q4L6nATQy67WwjmSPb+1+d3kJ0a8vDIe8LKtyd27Te6qFxOrzvmT3wk-
Z1fXwKTIHrxxDs3Uv12ESPTbhHkkT2ec-VlE9P6LvZ9ov4XKafql+avbZ75n6AP5+yMB-w4UycOEwSehzBGvMCJr8t2F+hHJe+Bz3pXhZV6q8FbOt3ll29aNo157hnfEVKa0n3zF6lOxUzZiPp9EctOIvqydzj4Wzmd9RYRVjaeJGotYVF8LJ-WFMSPyfh-cO20I5GefsTdSZaxDSdJj-IS0nc7xEkmen-0l0AIWlDH-00w-2STSWSXugdi-
0djSXgMMj0VgL+2gJfFgJsw-3ijSXKWoiShSnwNc1wNQMdkkhQIMwMWoISjckXDSXcioMG0dhMmYMDiRyvwz2JDSRGQpFIU0XSRJUKWS3YEUEEIwkEKmUIWy2fGvAYJfC-ASkEL-0UL2RUO-
hfAALkJug0N+RUMewazxEEM9gMLzRMKzhMM62ohMIeSwL60EIG1sP0JfH+UcPG2MNcPsEcJmx0N3kcMW08IHz8PhSCJXz8O2x0OnkEP2zCInkEOO0a1VlcNQPO2gLvR7hu0lgmkVg3VSK0UVizkVnM1ejcMsPsN5QDwTyD1wkKOaCyi+zTzTjfVQIwMVjPWQPtTcOZTBxN2qJBmgLKQaOaSaMM1SHIMYSAMjy-
ztVqIWgL0dSzTTjtkVipwC0-w-zp0khQX+SZ2yMIMMh2MOPRXWJCSANTU2Om2F3FX2NKKyixkENxg3wJzAM-BGwWlcWU38AWklzmMKBPiynLSX3+XBj0P935UD3pSAJPh+IKIWmJCAPrT+JuhBOt32Jyw02aHAMd282yHc1dzciGnfU93RI-
13jcl8ySnsCSij0qiygPQCK3QhP6PdSpKL2yCalGLxPGJ5LoLpO5JkTkjuIZDUXZPBO1VH0gySnpJlO6i5MFNwNIKSnCiSmr1wJVPpIb3lPilVJxL6kXHoIwzcksnfV71JONOqCmhK1CyxNX1IzJNClykX1uP5PCJiPXz6LV0tlePCLcjCxkhhMSEPw-
2nlvWEhHRygsGEgSLRmeMTx9NDO9y4O9xT29zvxDJTxzyU3lJGW4MYQkMwUeN8zS0wXy0YSgmb0qB-SAA
ROM (Read Only Memory):

The fuses can be blown off one time only.


Assume that the floating (not connected) inputs of the OR gates behave as if they are connected to logic LOW
inputs.
NOTE: The inputs A0 , A1, … are called the address lines (inputs). The outputs z 0, z 1, … are called data outputs.
Diode Matrix ROM:
Simplified single-line diagram:

For the OR gates, we draw one single line to


represent all 16 input lines.

The x symbol indicates that the corresponding


decoded line is connected to one of the input lines
of the corresponding OR gate.

A ROM is called a Programable Logic Device (PLD). It is Simplified Single-line diagram


made up of a decoder and a programable array of OR The AND gates have fixed (non-programable) inputs
gates. Let’s look inside the decoder of a small 3-input, 4- indicated as firm dots. The OR gates have programable
output ROM. input connections indicated as crosses.
Thus, a ROM is a PLD which has a fixed set of AND gates followed by a programable set of OR gates.

NOTE: There are two other well-known types of PLDs (Programable logic devices):
PLA (Programable Logic Array) and
PAL (Programable Array Logic)

A PLA is a PLD which has a programable set of AND gates followed by a programable set of OR gates
A PAL is a PLD which has a programable set of AND gates followed by a fixed set of OR gates.

A PLA (Programable Logic Array)2


Floating (not connected) inputs of AND gates behave as if they are connected to logic HIGH level

There are more Complex Programmable Logic Device (CPLD). The most popular programable device is FPGA (Field
Programable Gate Array) which we shall not study here.

2
Taken from M Morris Mano
Magnitude Comparator3
Given two 4-bit unsigned numbers ( A=A 3 A 2 A 1 A 0 ) and ( B=B3 B 2 B1 B0 ).
We want to check which number is larger or whether they are equal.

Logical Circuit:

Note: x 3= A3 ⊙ B3, x 2= A2 ⊙ B 2, x 1= A1 ⊙ B 1, x 0= A 0 ⊙ B0

If x 3=x 2=x 1=x 0=1 then A=B

A> B means ( A3 =1∧B3=0 )∨( x3 =1∧( A2 =1∧B2=0 ) )


¿ ( x 3=x 2=1∧( A1=1∧B 1=0 ) ) ∨( x 3=x 2=x 1=1∧( A0 =1∧B0=0 ) )

3
Taken from M Morris Mano
Carry look ahead adder or Fast adder4
Table showing when carries are propagated or generated
Carry Is a Carry Is a Carry Propagated
Carry Input Output Type of Carry Generated Pi
Ai Bi Ci C o=C i+1 Gi
0 0 0 0 None 0 0
0 0 1 0 None 0 0
0 1 0 0 None 0 0
0 1 1 1 Propagate 0 1
1 0 0 0 None 0 0
1 0 1 1 Propagate 0 1
1 1 0 1 Generate 1 0
1 0
Both
(Actually 1. However since G i=1,
1 1 1 1 Generate,
equation (1) below would remain
Propagate
unaffected if we make Pi=0 here )

C i+1=Gi + ( Pi ⋅Ci ) … (1)


G i= A i ⋅ Bi
Pi = A i ⊕ Bi

C 1=G0 + ( P0 ⋅C0 )
C 2=G1+ ( P1 ⋅C 1 )=G1 + P1 G0+ P 1 P0 C 0
C 3=G2 + ( P2 ⋅C 2 )=G 2+ P2 G1+ P2 P1 G0 + P2 P1 P 0 C 0
C 4=G3 + ( P 3 ⋅C 3 )=G3 + P3 G2+ P 3 P2 G1+ P 3 P2 P 1 G0 + P3 P 2 P1 P 0 C 0

Time required for each carry to be settled down


= Time required to generate a G i i.e. and AND operation + Time required for a AND operation + Time required for a
OR operation
This time is quite independent of the number of bits.

Exercise: Find out the time required for each sum bit to be settled down and show that this is quite independent of
the number of bits

Logical Circuit:

4
Taken from the Wikipedia. It is a slightly advanced topic.

You might also like