Forum Discussion
Altera_Forum
Honored Contributor
8 years agoNo logic elements although I have an output
Hello Please guide me why I don't see any logic element for the current code : LIBRARY ieee; USE ieee.std_logic_1164.all; Use ieee.numeric_std.all; USE work.my_data_types.all; -- to def...
Altera_Forum
Honored Contributor
8 years agoIt makes it easier if you use code tags when posting code.
Second, you have a multiple driver error because i/j are not constant, and the compiler does not know that the array elements are not driven from multiple processes. You can only do this if the indeces are constants. I recommend you drive all elements of an array from a single process (it will be less complicated and error prone anyway).