views:

36

answers:

1

I know this isn't really a programming question, but it is definitely computer related and someone might know this.

How do you construct a SR flip-flop with a D flip-flop and other logic gates?

I understand that ultimately, what you want is logic gates (with S and R as inputs) connecting in to the D input of the D flip-flop, but I am not quite sure how to figure out which logic gates.

Thanks!

A: 

You wouldn't normally construct an SR from a D. You'd typically construct an SR from a pair of cross-connect NANDs, something like this:

alt text

You can do the job with NORs as well, of course.

Jerry Coffin
I already know this. My Question is actually a homework question so this answer doesn't really help... :( But thanks for answering!
DemonicImpact