Verilog multidimensional array of real

R

RolfK

Guest
Dear Expertys outside;

I'm starting with verilog 2001 and would like to do this:

real edges [0:34][0:3];

edges = {
0 , 5 ,0 , 3 } ,
{ 0 , 5 ,0 , 3 } ,
 
On Dec 8, 11:35 am, RolfK <Rolf.Kem...@eu.necel.com> wrote:
I'm starting with verilog 2001 and would like to do this:

real edges [0:34][0:3];

edges = {
0 , 5 ,0 , 3 } ,
{ 0 , 5 ,0 , 3 } ,
You can declare the array, but Verilog does not have the C array
initializers you are trying to use to set the values of the array.
 

Welcome to EDABoard.com

Sponsor

Back
Top