KastnerRG / riffa

The RIFFA development repository
https://riffa.ucsd.edu
Other
766 stars 313 forks source link

ERROR: [VRFC 10-1775] range must be bounded by constant expressions #40

Open YiSyuanChen opened 5 years ago

YiSyuanChen commented 5 years ago

Hi all, I'm trying to simulate the project for VC707 (VC707_gen1x8lf64) using Vivado 2015.4. The Vivado runs on Ubuntu 14.04. However, the simulation has errors as following:

ERROR: [VRFC 10-1342] root scope declaration is not allowed in verilog 95/2K mode [../../../../../../../riffa_hdl/functions.vh:45] ERROR: [VRFC 10-1342] root scope declaration is not allowed in verilog 95/2K mode [../../../../../../../riffa_hdl/functions.vh:61] ... ERROR: [VRFC 10-1775] range must be bounded by constant expressions [/home/jeff/riffa_ori/fpga/riffa_hdl/scsdpram.v:59] ERROR: [VRFC 10-1775] range must be bounded by constant expressions [/home/jeff/riffa_ori/fpga/riffa_hdl/scsdpram.v:63]

For the first error, it seems that the functions in verilog header must be wrapped in a module. There are two more files have similar problem.

For the second error, the simulator reports error for syntax like: input [clog2s(C_DEPTH)-1:0]

I''m using the original Vivado simulator, and I'm not sure if this would be a problem.

I have tried to replace all clog2 and clog2s with $clog2, and wrap the functions into module, but the simulation result was very wierd. Does anyone can provide possible solution for these errors or any idea about simulation for project? Any comment would be very appreciated!

sjkklein commented 4 years ago

I am running into this same problem. Did you ever find a solution? I am going to keep poking at it...

dxloc commented 2 years ago

1st question: Change all .v file type to SystemVerilog.

2nd question: Seem like if you add a parameter that is the clog2s, you can solve this error.

scsdpram.v:

module scsdpram

(

  parameter C_WIDTH = 32,
  parameter C_DEPTH = 1024,

// Add C_ADDR_WIDTH parameter parameter C_ADDR_WIDTH = clog2s(C_DEPTH) ) ( input CLK, input RD1_EN, // input [clog2s(C_DEPTH)-1:0] RD1_ADDR, input [C_ADDR_WIDTH-1:0] RD1_ADDR, output [C_WIDTH-1:0] RD1_DATA, input WR1_EN, // input [clog2s(C_DEPTH)-1:0] WR1_ADDR, input [C_ADDR_WIDTH-1:0] WR1_ADDR, input [C_WIDTH-1:0] WR1_DATA );

showmeee commented 9 months ago

I think run the script would solve the 2nd question