verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / mixed1 / param1b.v
blob31cc1a247b13066812f18695c9ad5f8db6271f73
1 module param1b (input [3:0] x,
2 output [3:0] r);
3 parameter v = 0;
4 assign r = x + v;
5 endmodule