icestorm/icefuzz/tests/bitop.v

4 lines
65 B
Verilog

module top (input a, b, output y);
assign y = a & b;
endmodule