0

我最近从 VHDL 切换到 SystemVerilog,并且正在转换我的一些代码。我想根据 3 个参数 SZ、L、max 生成一个局部参数数组。

公式

module test #(
    parameter int SZ = 1024,
    parameter int L = 35,
    parameter int MAX = 4
)()
//...
localparam int n[MAX:0] = ;//...

for(genvar i = 0; i < max; i++) begin: gg
//n[i] and n[i+1] will be used here
//There is a second generate loop here that uses n[i+1] and therefore n[i+1] has to be parameter.

end

我尝试使用函数来生成 localparams,但我得到一个错误,即函数中的元素分配不是恒定的。我在 VHDL 中从未遇到过这个问题。

我能想到的唯一其他选择是在 for generate 中创建参数,但我将如何引用初始值?还有其他解决方案吗?

我使用的模拟器是 Verilator,但我也希望该设计在 Xilinx Vivado 中工作。

编辑:我不想从外部脚本生成参数,因为我无法使用 Vivado 在具有不同参数的同一项目中运行多个综合/实现的能力。这就是我以前在 VHDL 中所做的。

4

2 回答 2

1

您可以使用函数来初始化参数,您只需要将整个数组的输出作为函数的结果。为此,您需要一个 typedef

typedef int array_type[MAX:0];

function array_type f();
  f[0]=SZ;
  for(int i=0;i<MAX;i++)
      f[i+1]=f[i]-((2*i)+1)*L)/2;
endfunction
localparam array_type n = f();
于 2020-01-22T06:25:47.837 回答
0

我通过使用 32 位的打包数组让它工作。Verilator 不支持带常量的 unpacked int。Packed int 也不受支持,因此我不得不将类型更改为 32 位打包。

typedef [MAX:0][31:0] array_type;

function array_type f();
  f[0]=SZ;
  for(int i=0;i<MAX;i++)
      f[i+1]=f[i]-((2*i)+1)*L)/2;
endfunction
localparam array_type n = f();
于 2020-01-23T14:38:53.170 回答