Skip to content

Commit 2d98caa

Browse files
authored
Create q.v
1 parent 7077028 commit 2d98caa

File tree

1 file changed

+12
-0
lines changed
  • LAB VII: CONSTRUCT, TEST AND INVESTIGATE THE OPERATION OF VARIOUS FLIP-FLOP CIRCUITS USING HDL/Q2

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Q2. Design and test SR flip-flop.
2+
3+
4+
5+
// design.sv
6+
7+
// Data-Flow
8+
module circuit2(S, R, Q, T);
9+
input S, R;
10+
output Q, T;
11+
assign T = S || (Q && (!(R)));
12+
endmodule

0 commit comments

Comments
 (0)