We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 992baf2 commit 0a6685fCopy full SHA for 0a6685f
LAB I: Examine the Operation of Logic Gates Using HDL/Q2/d)/d.v
@@ -7,7 +7,7 @@
7
module Xor(A, B, X)
8
input (A, B);
9
output X;
10
- wires w1, w2, w3;
+ wire w1, w2, w3;
11
nand G1(w1, A, B);
12
nand G2(w2, A, w1);
13
nand G3(w3, B, w1);
@@ -18,7 +18,7 @@ endmodule
18
module circuit1(A, B, X)
19
20
21
22
assign w1 = !(A && B);
23
assign w2 = !(A && w1);
24
assign w3 = !(B && w1);
0 commit comments