blob: 9689788c4335fba471251fff5650144fd4199ce0 [file]
module reg_combo_example( a, b, y);
input a, b;
output y;
reg y;
wire a, b;
always @ ( a or b)
begin
y = a & b;
end
endmodule