yosys/tests/asicworld/code_tidbits_wire_example.v

10 lines
106 B
Verilog
Raw Normal View History

2013-01-05 04:13:26 -06:00
module wire_example( a, b, y);
input a, b;
output y;
wire a, b, y;
assign y = a & b;
endmodule