yosys/tests/hana/test_intermout_always_comb_...

10 lines
100 B
Verilog

module test(a, b, c);
input b, c;
output reg a;
always @(b or c) begin
a = b;
a = c;
end
endmodule