From 4d471bdbc040908666a7836027a855c7396e46a3 Mon Sep 17 00:00:00 2001 From: Ludvik Tesar Date: Thu, 26 Jan 2023 10:05:13 +0100 Subject: [PATCH] This adds SR flip-flop Flip-flop with set and reset input signals. Clock input signal is optional. It can be triggered by raising or failing edge. Master reset (which pulls output low regardless of the state of S and R) is also optional and can be inverted. Such SR flip-flop with inverted master reset is used internally in 555 chip. --- common/sr_flip_flop | 115 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 common/sr_flip_flop diff --git a/common/sr_flip_flop b/common/sr_flip_flop new file mode 100644 index 0000000..2c1b7c8 --- /dev/null +++ b/common/sr_flip_flop @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +