There was an error while loading. Please reload this page.
1 parent e74ca8d commit 73d2aa3Copy full SHA for 73d2aa3
example/verilog/and_gate.v
@@ -0,0 +1,8 @@
1
+module and_gate(a,b,o);
2
+input a,b;
3
+output o;
4
+
5
+and (o,a,b);
6
7
8
+endmodule
0 commit comments