Skip to content

Commit 73d2aa3

Browse files
pan209Wu Chenzhi
authored andcommitted
Add and gate.v
1 parent e74ca8d commit 73d2aa3

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

example/verilog/and_gate.v

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)