Digital Logic Design Lecture 18

Clock Cycle

AC Input that is quantized

SR Flip-Flop: Excitation Table and Truth Table

Truth Table of SR Flip-Flop

SRPS (Qn)NS (Qn+1)Condition
0000No change condition
0100Reset
1001Set
110?Indeterminate condition

Legend:

  • PS → Present State
  • NS → Next State

Excitation Table for SR Flip-Flop

  • Excitation tables are used for flip-flop conversion.
  • The excitation table shows, for a particular combination of present state and next state, what the mandatory inputs must be.
PS (Qn)NS (Qn+1)SR
000X
0110
1001
11X0

Notes:

  • S, R are the mandatory inputs for each state transition.
  • X represents “don’t care.”

Additional Notes

  • S, R, Mandatory Inputs: For each state transition, these inputs are required to achieve the next state.

Conversion

Flip-Flop Conversions: SR Flip-Flop to D Flip-Flop

SR Flip-Flop to D Flip-Flop Conversion:

  • SR: Source Flip-Flop
  • D: Destination Flip-Flop

Truth Table for D Flip-Flop:

DPS (Qn)NS (Qn+1)
000
111

Excitation Table for SR Flip-Flop:

PS (Qn)NS (Qn+1)SR
000X
0110
1001
11X0
  • X represents “Don’t care” and can be either 0 or 1.

Combined Table for SR to D Conversion:

DPS (Qn)NS (Qn+1)SR
0000X
01001
10110
111X0
  • In the conversion process, the values of S and R are derived based on the desired next state and the present state.

References

Information
  • date: 2024.10.03
  • time: 08:34