verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / assign01 / assign01.v
blobf76dd6a9ad49b869e3c7ad3f86c124ec68071bc9
1 module assign01(output [0:3] a, output [0:3] b, input [0:7] v);
2 assign {a, b} = v;
3 endmodule