Altera_Forum
Honored Contributor
12 years agohow I can create a custom instruction to manage operations on vectors
hi,
I'm trying to write a VHDL component that makes a multiplication between two matrices or vectors. the component will be a custom instruction that I would use in nios in the following way float vett1 [10], vett2 [10], float result [] = alt_mult (vett1, vett2); the questions are as follows how can I send arrays to the function mult vhdl? where I have to save them? can anyone help me? if there is a similar project you can send me the code?