navicv
Newbie level 3
hello,
i am a little new to vhdl and need some help. i have written c code for haar wavelet transform, i want to implement it in vhdl, to port it onto xilinx fpga board, can anyone guide me as to how to do it. i need this for my M.Tech project.
i tried to consider the matrix as an array of array of integer.
i.e
package mat is
type row is array(o to 7) of integer;
type matrix is array(0 to 7) of row;
end mat;
then i tried to assign values to this matrix, by first writing to a row then putting it into the matrix, but the assignment is not proper.
please help
i am a little new to vhdl and need some help. i have written c code for haar wavelet transform, i want to implement it in vhdl, to port it onto xilinx fpga board, can anyone guide me as to how to do it. i need this for my M.Tech project.
i tried to consider the matrix as an array of array of integer.
i.e
package mat is
type row is array(o to 7) of integer;
type matrix is array(0 to 7) of row;
end mat;
then i tried to assign values to this matrix, by first writing to a row then putting it into the matrix, but the assignment is not proper.
please help