Skip to content

Commit c276fc0

Browse files
authored
Update q.v
1 parent ed604d3 commit c276fc0

File tree

1 file changed

+2
-2
lines changed
  • LAB II: Examine & Analyze Advantages of Gate Level Minimization for Boolean Function Using HDL/Q1

1 file changed

+2
-2
lines changed

LAB II: Examine & Analyze Advantages of Gate Level Minimization for Boolean Function Using HDL/Q1/q.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
module circuit1(A, B, C, F)
99
input (A, B, C);
1010
output F;
11-
wires w1, w2, w3;
11+
wire w1, w2, w3;
1212
and G1(w1, A, B);
1313
not G2(w2, B);
1414
and G3(w3, w2, A, C);
@@ -19,7 +19,7 @@ endmodule
1919
module circuit1(A, B, C, F)
2020
input (A, B, C);
2121
output F;
22-
wires w1, w2, w3;
22+
wire w1, w2, w3;
2323
assign w1 = (A && B);
2424
assign w2 = (!B);
2525
assign w3 = (A && w2 && c);

0 commit comments

Comments
 (0)