icestorm/icefuzz/tests/bitop.v

4 lines
65 B
Coq
Raw Normal View History

2015-07-18 13:10:40 +02:00
module top (input a, b, output y);
assign y = a & b;
endmodule