ctzof
Full Member level 3
I want to create an array in Verilog which is going to contain the values x,y of a given function (not a known one just a line calculated from values). So each content of the array is going to contain a value of x and a value of y. So lets say that I have the following values for (x,y)
3,2 5,10 1,5
The final array will look something like this
Table[x][y]
Table[0][3][2]
Table[1][5][10]
Table[3][1][5]
Is it possible to make this array in verilog and be synthesizable. If yes how we can access each point on this array?
Thanks
3,2 5,10 1,5
The final array will look something like this
Table[x][y]
Table[0][3][2]
Table[1][5][10]
Table[3][1][5]
Is it possible to make this array in verilog and be synthesizable. If yes how we can access each point on this array?
Thanks