0
1.5kviews
Design Clocked D FF and implement using standard CMOS logic style

Subject :- VLSI Design

Topic :- Data Path Design

Difficulty :- High

1 Answer
0
4views

Clocked D Flip Flop

enter image description here

Figure shows the Clocked Flip flop with additional two and gates with two inputs are clock and D. When the clock is low it disables the two AND gates and prevents the Flip flop from changing the states.

When a clock is high, it is important as the flip flop output state depends on the input D bit. A high D sets the flip flop output high and a low D resets it.

Based on the input clock triggering mechanism the d flip flops are divided as level triggered and edge triggered flip flops.

D flip flop Truth table

CLK D Q
0 * Last State
1 0 0
1 1 1
Please log in to add an answer.