Lab3
Lab3
Set Reset Q Q`
1 0 0 1
1 1 0 0
0 1 1 0
1 1 0 0
2. When one of the inputs is 1, the circuit remember a binary value, which is useful
when implementing this circuit at a larger scale to be able to store any value.
3. When both inputs of an RS flip-flop are set to 1, the output becomes indeterminate
or invalid, as both the "set" and "reset" functions are trying to occur
simultaneously which is an issue because it make the circuit become instability.
4. D-Flip Flop
Clock Pin Q Q`
0 0 No change No change
0 1 No Change No change
1 0 0 1
1 1 1 0
5. D-Flip Flop can be used to store a single bit synchronously, it can also be used to
read the data.
6. The clock signal determines when the data input will be recorded to the output.
7. Because the R-S flip flop need manual toogle to make the data input be saved or
not, while the D-Flip flop don’t need manual toogle
8.
J K Qn+1(when Q`(when clocked)
clocked)
0 0 Qn Qn`
0 1 0 1
1 0 1 0
1 1 Qn` Qn
9. A J-K Flip Flop can be made to behave like a D Flip Flop by putting one inverter
between the J and K.
10. A J-K Flop Flop can be made to behave like a toggle (T Flip Flop) by setting the
value for J and K to 1 .
11.
Ox Input Binary Output Binary
0 0000 0000
1 0001 0001
2 0010 0010
3 0011 0011
4 0100 0100
5 0101 0101
6 0110 0110
7 0111 0111
8 1000 1000
9 1001 1001
A 1010 1010
B 1011 1011
C 1100 1100
D 1101 1101
E 1110 1110
F 1111 1111