Module1 DDCO Final
Module1 DDCO Final
organization
BCS302
Module 1
Introduction to Digital Design
AND GATE
• This is a gate with 2 or more inputs.
• The output is HIGH only when all inputs are HIGH.
• OR
• Y = A⨁B
10
11
EX-NOR Gate
• Truth Table
A B Y
A
0 0 1 Y
B
0 1 0
1 0 0
1 1 1
• Y = A⨀B
OR
• or 12
13
14
15
16
Example: XY + X′Z + YZ
17
18
19
• Example:
• Fundamental Products for Three Inputs
20
21
• Write down the fundamental product for each output 1 in the truth table. For example,
the first output 1 appears for an input of A = 0, B = 1, and C = 1. The corresponding 22
fundamental product is .
Department of Computer Science and Engg
Sum-of-Products Equation
• Alternate representation
23
24
25
• Given a truth table, identify the fundamental sums needed for a logic
design. Then by ANDing these sums, will get the product-of-sums
equation corresponding to the truth table.
• But, in the sum-of-products method, the fundamental product
produces an output l for the corresponding input condition.
• But with the product of- sums method, the fundamental sum produces
an output 0 for the corresponding input condition.
26
27
• Logic Circuit
28
29
30
31
33
Y=A’B’+A’B
Y=A’BC’+ABC’+ABC
Y=A’B’C’D+A’BCD+A’BCD’+ABCD’
55
PI= BC’,BD’,A’C’D
Y= BC’+BD’+A’C’D
75
77
• ARCHITECTURE:
The ARCHITECTURE is the description of how the circuit of design
works. Its syntax is as follows,
• ARCHITECTURE architecture_name OF entity_name IS
[declarations] BEGIN (code) END architecture_name;