Module2_DDCO_Final-----------------.pptx

sameerbarala09 0 views 86 slides Oct 08, 2025
Slide 1
Slide 1 of 86
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14
Slide 15
15
Slide 16
16
Slide 17
17
Slide 18
18
Slide 19
19
Slide 20
20
Slide 21
21
Slide 22
22
Slide 23
23
Slide 24
24
Slide 25
25
Slide 26
26
Slide 27
27
Slide 28
28
Slide 29
29
Slide 30
30
Slide 31
31
Slide 32
32
Slide 33
33
Slide 34
34
Slide 35
35
Slide 36
36
Slide 37
37
Slide 38
38
Slide 39
39
Slide 40
40
Slide 41
41
Slide 42
42
Slide 43
43
Slide 44
44
Slide 45
45
Slide 46
46
Slide 47
47
Slide 48
48
Slide 49
49
Slide 50
50
Slide 51
51
Slide 52
52
Slide 53
53
Slide 54
54
Slide 55
55
Slide 56
56
Slide 57
57
Slide 58
58
Slide 59
59
Slide 60
60
Slide 61
61
Slide 62
62
Slide 63
63
Slide 64
64
Slide 65
65
Slide 66
66
Slide 67
67
Slide 68
68
Slide 69
69
Slide 70
70
Slide 71
71
Slide 72
72
Slide 73
73
Slide 74
74
Slide 75
75
Slide 76
76
Slide 77
77
Slide 78
78
Slide 79
79
Slide 80
80
Slide 81
81
Slide 82
82
Slide 83
83
Slide 84
84
Slide 85
85
Slide 86
86

About This Presentation


Slide Content

1 By, Dr. Ashwini N Assistant Professor Dept. of Information Science & Engineering BMS Institute of Technology, Bengaluru . Digital design and computer organization BCS302 Module 2 Combinational Circuits

12/14/2023 2 Design Procedure From the specifications of the circuit determine the required number of inputs and outputs and assign a symbol to each Derive the truth table that defines the required relationship between inputs and outputs Obtain the specified Boolean functions for each output as a function of the input variables Draw the logic diagram and verify the correctness of the design

12/14/2023 3 Converting BCD(8421) to Excess-3

12/14/2023 4 Converting BCD(8421) to Excess-3

12/14/2023 5 Converting BCD(8421) to Excess-3

6 Half Adder Truth Table for Half Adder Logic Expression =   Input Output A B Sum (S) Carry (C) 1 1 1 1 1 1 1 Binary Adder- Subtractor

Half Adder Circuit 12/14/2023 7

12/14/2023 8 FULL ADDER

12/14/2023 9 FULL ADDER

12/14/2023 10 FULL ADDER

4-bit Ripple Carry Adder 12/14/2023 11

4-bit Ripple Carry Adder Ripple carry adder  is an alternative for when half adder and full adders do not perform the addition operation when the input bit sequences are large. But here, it will give the output for whatever the input bit sequences with some delay. As per the digital circuits if the circuit gives output with delay won’t be preferable. This can be overcome by a carry look-ahead adder circuit. 12/14/2023 12

Carry Look-ahead Adder A carry look-ahead adder reduces the propagation delay by introducing more complex hardware. In this design, the ripple carry design is suitably transformed such that the carry logic over fixed groups of bits of the adder is reduced to two-level logic. Let us discuss the design in detail.  12/14/2023 13

Carry Look-ahead Adder The corresponding boolean expressions are given here to construct a carry look ahead adder. In the carry- lookahead circuit we ned to generate the two signals carry propagator(P) and carry generator(G), Pi = Ai ⊕ Bi Gi = Ai · Bi The output sum and carry can be expressed as Si = Pi ⊕ Ci Ci+1 = Gi + ( Pi · Ci ) Boolean function for the carry output of each stage and substitute for each Ci its value from the previous equations: C0= input carry C1 = G0 + P0 · C0 C2 = G1 + P1 · C1 = G1 + P1 · G0 + P1 · P0 · C0 C3 = G2 + P2 · C2 = G2 P2 · G1 + P2 · P1 · G0 + P2 · P1 · P0 · C0 12/14/2023 14

12/14/2023 15 Carry Look-ahead Adder

MULTIPLEXERS Multiplex means many into one. A multiplexer (also called data selector) is a circuit with many inputs but only one output. By applying control signals (Select Input), can steer any input to the output. Below shows the block diagram of MUX. The circuit has n input signals, m control signals and 1 output signal. Note that, m control signals can select at the most 2 m input signals thus n ≤ 2 m . 16

MULTIPLEXERS The block diagram of a 4-to-1 multiplexer is shown below and its truth table. Depending on control inputs A, B one of the four inputs Do to D3 is steered to output Y. 17

MULTIPLEXERS 2-to-1 Multiplexer and Switch Analog When the control input A is 0, the switch is in the upper position and the MUX output is Z = I ; When A is 1, the switch is in the lower position and the MUX output is Z = I 1 . In other words, a MUX acts like a switch that selects one of the data inputs (I or I 1 ) and transmits it to the output. 18 Z = A′I + AI 1

MULTIPLEXERS 4-to-1 MUX logic circuit Logic equation of this circuit is a SOP representation. 19

MULTIPLEXERS 8-to-1 multiplexer Z = A′B′C′I + A′B′CI 1 + A′BC′I 2 + A′BCI 3 + AB′C′I 4 + AB′CI 5 + ABC′I 6 + ABCI 7 20 Select/Control Input Output A B C Z I 1 I 1 1 I 2 1 1 I 3 1 I 4 1 1 I 5 1 1 I 6 1 1 1 I 7

MULTIPLEXER Logic Diagram for 8-to-1 MUX 21

MULTIPLEXER Note that the data inputs are connected to four 2-to-1 MUXs with C as the select line, and the outputs of these 2-to-1 MUXs are connected to a 4-to-1 MUX with A and B as the select lines. Figure shows this in block diagram form. 22

MULTIPLEXERS Show how 4-to-1 multiplexer can be obtained using only 2-to-1 multiplexer. Logic equation for 2-to-1Multiplexer: Y= A’D0 + AD1 Logic equation for 4-to-1 Multiplexer: Y = A'B' D0+ A'BD1 + AB' D2 + ABD3 This can be rewritten as, Y= A'(B'D0 + BD1) +A (B'D2 + BD3) 23

12/14/2023 24

Design 8:1 MUX with only 2:1 MUX 12/14/2023 25

Design 8:1 MUX with two 4:1 MUX and one 2:1 MUX 12/14/2023 26

MULTIPLEXERS Realize Y=A'B + B'C' + ABC using an 8-to-1 multiplexer. First we express Y as a function of minterms of three variables. Thus Y = A'B + B'C' + ABC Y =A'B(C' + C)+B'C'(A' + A)+ ABC [As,X+X'= I] Y = A'B'C' + A'BC' + A'BC + AB'C' + ABC Comparing this with equation of 8 to 1 multiplexer, we find by substituting D0 = D2 = D3 =D4 = D7 = 1 and D1 = D5 = D6 = 0. 27

MULTIPLEXERS Can it be realized Y =A'B + B'C‘ + ABC equation with a 4-to-1 multiplexer? The 4-to-1 multiplexer generates 4 minterms for different combinations of AB. We rewrite given logic equation in such a way that all these terms are present in the equation. Y =A'B+B'C' +ABC Y =A'B+ B'C'(A' +A)+ ABC [As,X +X' = I] Y =A'B'.C' + A'B.1 +AB'.C' + AB.C Compare above with equation of a 4-to-1 multiplexer. We see D0= C', D1 = 1, D2 = C' and D3 = C generate the given logic function. 28

MULTIPLEXERS Design a 32-to-1 multiplexer using two 16-to-1 multiplexers and one 2-to-1 multiplexer. A 32-to-1 multiplexer requires log2 32 =5 select lines say, ABCDE. The Iower 4 select lines BCDE choose 16-to-1 multiplexer outputs. The 2-to-1 multiplexer chooses one of the output of two 16-to-1 multiplexers depending on what appears in the 5th select line, A. 29

Implement using 4:1 MUX 12/14/2023 30

f (a,b,c,d)=Σm(2,3,4,5,13,15)+d(8,9,10,11) 12/14/2023 31 MULTIPLEXERS D0 D1 D2 D3 D4 D5 D6 D7 1 d E a b c 05,Y Y 8:1 MUX

12/14/2023 32

DECODER A decoder is similar to a demultiplexer , with one exception-there is no data input. Also called binary-to-decimal decoder. The name decoder means translating of coded information from one format into another. A binary decoder is a multi-input, multi-output combinational circuit that converts a binary code of n input lines into a one out of 2 n output code.  Depending on the number of input lines, the inputs of a binary code can be 2-bit or 3-bit or 4-bit codes. Upon the availability of 2 n lines, it activates the one of its output by deactivating (making logic 0) all other input whenever it receives n inputs. 33

DECODER The most commonly used practical binary decoders are 2-to-4 decoder, 3-to-8 decoder and 4-to-16 line binary decoder. 2-to-4 decoder also called 1 of 4 3-to-8 decoder also called 1 of 8 4-to-16 line binary decoder also called 1 of 16 34

DECODER 2-to-4 Binary Decoder (1 of 4 Decoder) 35 Input Output A B Y0 Y1 Y2 Y3 1 1 1 1 1 1 1 1

DECODER 3-to-8 Binary Decoder (1 of 8 Decoder) 36 A B C Y0 Y1 Y2 Y3 Y4 Y5 Y6 Y7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

DECODER This decoder generates all of the minterms of the three input variables. Exactly one of the output lines will be 1 for each combination of the values of the input variables. 37

DECODER A 4-to-10 Line Decoder 38

DECODER A 4-to-10 Line Decoder 39

DECODER A 4-to-10 Line Decoder This decoder has inverted outputs (indicated by the small circles). For each combination of the values of the inputs, exactly one of the output lines will be 0. When a binary-coded-decimal (BCD) digit is used as an input to this decoder, one of the output lines will go low to indicate which of the 10 decimal digits is present. 40

DECODER In general, an n-to-2 n line decoder generates all 2 n minterms (or maxterms ) of the n input variables. The outputs are defined by the equations yi = mi = Mi ′, i = 0 to 2n − 1 ( noninverted outputs) or yi = mi ′ = Mi , i = 0 to 2n − 1 (inverted outputs) where mi is a minterm of the n input variables and Mi is a maxterm . 41

DECODER Applications of Decoders Decoders are greatly used in applications where the particular output or group of outputs to be activated only on the occurrence of a specific combination of input levels. Binary to Decimal Decoder Decoders are used to get the decimal digit corresponding to a specific input combination. A BCD number needs 4 binary digits to represent the 0 to 9 decimal digits, thus it consists of 4 input lines. It consists of 10 output lines corresponding to 0 to 9 decimal digits. (1 of 10 line decoder) Address Decoders Amongst its many uses, a decoder is widely used to decode the particular memory location in the computer memory system. Decoders accept the address code generated by the CPU which is a combination of address bits for a specific location in the memory. In a memory system, there are several memory ICs are combined and each one has their unique address to distinguish from other memory locations. In such cases a decoder built in the memory ICs circuitry, is used to select a memory IC in response to a range of addresses by decoding the most significant bits of the systems address, thereby a particular memory location or IC is selected. Instruction Decoder Another application of the decoder can be found in the control unit of the central processing unit. This decoder is used to decode the program instructions in order to activate the specific control lines such that different operations in the ALU of the CPU are carried out. 42

DECODER Because an n-input decoder generates all of the minterms of n variables, n- variable functions can be realized by ORing together selected minterm outputs from a decoder. If the decoder outputs are inverted, then NAND gates can be used to generate the functions. 43

DECODER Realize f1(a, b, c, d) = m1 + m2 + m4 and f2(a, b, c, d) = m4 + m7 + m9 using the 4 to 10 line decoder. 44

DECODER Show how using a 3-to-8 decoder and multi-input OR gates following Boolean expressions can be realized simultaneously. F1 (A, B, C) = ∑m(0, 4, 6); F2(A, B, C) = ∑m(0, 5); F3(A, B, C) = ∑m(1, 2, 3, 7) 45

DECODER Implement a full adder circuit using a 3-to-8 line decoder. Sum output S = ∑m (1 2 4 7) Carry output Co= ∑m (3 5 6 7) 46

DECODER BCD-TO-DECIMAL DECODERS (IC 7445) 47

DECODER Truth Table of 1 of 10 decoder 48

ENCODERS An encoder converts an active input signal into a coded output signal. An encoder is a device which converts familiar numbers or characters or symbols into a coded format. It accepts the alphabetic characters and decimal numbers as inputs and produces the outputs as a coded representation of the inputs. It is a combinational circuit that performs the opposite function of a decoder. These are mainly used to reduce the number of bits needed to represent given information. 49

ENCODERS Depending on the number of input lines, digital or binary encoders produce the output codes in the form of 2 or 3 or 4 bit codes. An encoder is a multiplexer without its single output line. It is a combinational logic function that has 2 n (or fewer) input lines and n output lines, which correspond to n selection lines in a multiplexer. The n output lines generate the binary code for the possible 2 n input lines. 50

ENCODERS 4 – to – 2 Bit Binary Encoder 51

ENCODERS An 8-to-3 Priority Encoder 52

ENCODERS An 8-to-3 Priority Encoder 8-to-3 priority encoder with inputs y0 through y7. If input yi is 1 and the other inputs are 0, then the abc outputs represent a binary number equal to i . For example, if y3 = 1, then abc = 011. If more than one input can be 1 at the same time, the output can be defined using a priority scheme. The truth table uses the following scheme: If more than one input is 1, the highest numbered input determines the output. For example, if inputs y1, y4, and y5 are 1, the output is abc = 101. The X’s in the table are don’t-cares; for example, if y5 is 1, we do not care what inputs y0 through y4 are. Output d is 1 if any input is 1, otherwise, d is 0. This signal is needed to distinguish the case of all 0 inputs from the case where only y0 is 1. 53

ENCODERS Depending on the number of input lines, digital or binary encoders produce the output codes in the form of 2 or 3 or 4 bit codes. An encoder is a multiplexer without its single output line. It is a combinational logic function that has 2 n (or fewer) input lines and n output lines, which correspond to n selection lines in a multiplexer. The n output lines generate the binary code for the possible 2 n input lines. 54

ENCODERS 4 – to – 2 Bit Binary Encoder 55

Priority ENCODERS The priority encoder is a combinational logic circuit that contains 2^n input lines and n output lines and represents the highest priority input among all the input lines. When multiple input lines are active high at the same time, then the input that has the highest priority is considered first to generate the output. 56

Priority ENCODERS 12/14/2023 57

ENCODERS An 8-to-3 Priority Encoder 8-to-3 priority encoder with inputs y0 through y7. If input yi is 1 and the other inputs are 0, then the abc outputs represent a binary number equal to i . For example, if y3 = 1, then abc = 011. If more than one input can be 1 at the same time, the output can be defined using a priority scheme. The truth table uses the following scheme: If more than one input is 1, the highest numbered input determines the output. For example, if inputs y1, y4, and y5 are 1, the output is abc = 101. The X’s in the table are don’t-cares; for example, if y5 is 1, we do not care what inputs y0 through y4 are. Output d is 1 if any input is 1, otherwise, d is 0. This signal is needed to distinguish the case of all 0 inputs from the case where only y0 is 1. 58

ENCODERS Decimal-to-BCD Encoder 59

ENCODERS Decimal-to-BCD Encoder Y3 = D8 + D9 Y2 = D4 + D5 + D6 + D7 Y1 = D2 + D3 + D6 + D7 Y0 = D1 + D3 + D5 + D7 + D9 60

Introduction to latches and flipflops Sequential switching circuits have the property that the output depends not only on the present input but also on the past sequence of inputs. In effect, these circuits must be able to “remember” something about the past history of the inputs in order to produce the present output. Latches and flip-flops are commonly used memory devices in sequential circuits. A memory element that has no clock input is often called a latch. A memory element that has clock input is often called a Flip-Flop. 61 A flip-flop is a bi stable electronic circuit that has 2 stable state i.e. output is either logic 0 or logic 1

62 Basic idea to construct a flip-flop

12/14/2023 63 Basic idea to construct a flip-flop

Set-Reset Latch NOR-Gate latch The basic flip-flop can be improved by replacing the inverters with either NAND or NOR gates. The additional inputs on these gates provide a convenient means for application of input signals to switch the flip-flop from one stable state to the other. 64

Two inputs labelled R and S. Two outputs, defined in more general terms as Q and Q’. 65 Set-Reset Latch

12/14/2023 66

To aid in understanding the operation of this circuit, recall that an H = 1 at any input of a NOR gate forces its output to an L = 0. The first input condition in the truth table is R = 0 and S = 0. Since a 0 at the input of a NOR gate has no effect on its output, the flip-flop simply remains in its present state; that is, Q remains unchanged. 67 Set-Reset Latch

The second input condition R = 0 and S = 1 forces the output of NOR gate B low. Both inputs to NOR gate A are now low, and the NOR-gate output must be high. Thus a 1 at the S input is said to SET the flip-flop, and it switches to the stable state where Q = 1. 68 Set-Reset Latch

The third input condition is R = 1 and S = 0. This condition forces the output of NOR gate A low, and since both inputs to NOR gate B are now low, the output must be high. Thus a 1 at the R input is said to RESET the flip-flop and it switches to the stable state where Q = 0 (or Q’ = 1). 69 Set-Reset Latch

The last input condition in the table, R = 1 and S = 1, is forbidden, as it forces the outputs of both NOR gates to the low state. In other words, both Q = 0 and Q’ = 0 at the same time. This violates the basic definition of a flip-flop that requires Q to be the complement of Q’, and so it is generally agreed never to impose this input condition. 70 Set-Reset Latch

latch   71 Set-Reset Latch(using NAND)

12/14/2023 72 Set-Reset Latch(using NAND)

Gated D latch 12/14/2023 73

12/14/2023 74 Positive Edge triggered SR Flipflop

Negative Edge triggered SR Flipflop 12/14/2023 75

Positive edge triggered D flipflop 12/14/2023 76

12/14/2023 77 J-K Flip-Flop

12/14/2023 78

12/14/2023 79 J-K Master Slave Flip-Flop

12/14/2023 80

12/14/2023 81 T Flip-Flop

12/14/2023 82 Various Representation of Flip-Flop S R Flip-Flop Truth Table Characteristic Equation Excitation Table FSM(Finite State Machine)

12/14/2023 83 Various Representation of Flip-Flop D Flip-Flop Truth Table Characteristic Equation Excitation Table FSM(Finite State Machine)

12/14/2023 84 Various Representation of Flip-Flop J K Flip-Flop Truth Table Characteristic Equation Excitation Table FSM(Finite State Machine)

12/14/2023 85 Various Representation of Flip-Flop T Flip-Flop Truth Table Characteristic Equation Excitation Table FSM(Finite State Machine)

VHDL codes of MUX, Binary adders must be studied from Lab session 12/14/2023 86
Tags