Ddco 1
Ddco 1
organization
BCS302
Module 1
Introduction to Digital Design
By,
Dr. Ashwini N
Assistant Professor
Dept. of Information Science & Engineering
BMS Institute of Technology, Bengaluru.
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
A B Y
A
0 0 1 Y
B
0 1 0
1 0 0
1 1 1
12
13
14
15
16
Example: XY + X′Z + YZ
17
18
19
• Example:
• Fundamental Products for Three Inputs
20
21
22
• 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
12/14/2023
Department of Computer Science and Engg
37
Three Variable K-MAP
12/14/2023
Department of Computer Science and Engg
38
FOUR Variable K-MAP
12/14/2023
Department of Computer Science and Engg
39
K-MAP for given truth table
Y=A’B’+A’B
12/14/2023
Department of Computer Science and Engg
40
K-MAP for given truth table
Y=A’BC’+ABC’+ABC
12/14/2023
Department of Computer Science and Engg
41
K-MAP for given truth table
Y=A’B’C’D+A’BCD+A’BCD’+ABCD’
12/14/2023
Department of Computer Science and Engg
42
K-MAP Grouping Pairs
12/14/2023
Department of Computer Science and Engg
43
K-MAP Grouping Pairs
12/14/2023
Department of Computer Science and Engg
44
K-MAP Grouping QUAD
12/14/2023
Department of Computer Science and Engg
45
K-MAP Grouping QUAD
12/14/2023
Department of Computer Science and Engg
46
K-MAP Grouping OCtETS
12/14/2023
Department of Computer Science and Engg
47
K-MAP Grouping Symmetric
12/14/2023
Department of Computer Science and Engg
48
Problems on K-map
12/14/2023
Department of Computer Science and Engg
50
Problems on K-map
12/14/2023
Department of Computer Science and Engg
51
Problems on K-map
55
PI= BC’,BD’,A’C’D
Y= BC’+BD’+A’C’D
73
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;