Hi, I'm trying to generate a VHDL code from Hdl coder. My function file is like below.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
shamanth sanadi
el 25 de En. de 2017
Respondida: Tim McBrayer
el 25 de En. de 2017
function[a]=frfunc(x,y,c)
a=0;
for i=0:c
a(i)=x(i)+y(i);
end
end
The error was
"Found an unsupported unbounded loop structure at '...'. This loop may be user defined or automatically generated due to the use of specific vector expression or function".
so how to write a for loop whose limit(i.e 'c') is read from the test bench file.
1 comentario
Walter Roberson
el 25 de En. de 2017
Editada: Walter Roberson
el 25 de En. de 2017
You appear to be indexing at 0, which would not lead to the message you are seeing but would lead to other errors.
You should be using initializing a to the appropriate size, such as
a = zeros(1, c+1);
Respuesta aceptada
Tim McBrayer
el 25 de En. de 2017
You will need to use some other method of informing your loop when to stop iterating. Hardware designs require fixed sizes for both loops and data structures. Otherwise, how can the size of registers, amount of RAM, etc., be determined?
One possibility is to declare your array a to have some maximum size. Then you can replace your count size 'c' with a data valid strobe coming from your testbench. When the strobe is '1', process the next pair of inputs. When it's low, do nothing.
0 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!