verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / dff04 / dff04.v
blobba64f5901ca5757fe589e1aff7db3785675879cb
1 module dff04 (input clk,
2 input [7:0] din,
3 output reg [7:0] dout);
4 always @(posedge clk)
5 dout <= din;
6 endmodule