3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-24 19:06:22 +00:00
yosys/tests/various/unpacked_arrays.sv
Tobias Wölfel 8b8af10f5e Unpacked array declaration using size
Allows fixed-sized array dimension specified by a single number.

This commit is based on the work from PeterCrozier
https://github.com/YosysHQ/yosys/pull/560.
But is split out of the original work.
2019-06-19 12:47:48 +02:00

4 lines
81 B
Systemverilog

module unpacked_arrays;
reg array_range [0:7];
reg array_size [8];
endmodule