yosys/tests/hana/test_intermout_always_comb_...

10 lines
100 B
Coq
Raw Normal View History

2013-01-05 04:13:26 -06:00
module test(a, b, c);
input b, c;
output reg a;
always @(b or c) begin
a = b;
a = c;
end
endmodule