Skip to content

Commit bef67d8

Browse files
authored
Create q.v
1 parent 7ae4eaa commit bef67d8

File tree

1 file changed

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

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Q4. Realize the function of T flip flop using JK flip-flop.
2+
3+
4+
// design.sv
5+
6+
// Data-Flow
7+
module circuit4(Q, T, X);
8+
input Q, T;
9+
output X;
10+
assign X = Q ^ T;
11+
endmodule;
12+
13+

0 commit comments

Comments
 (0)