You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
controller.vhd at simulation throws range error for: 49 round_constant <= rcon_table((i + 1)*8 - 1 downto 8*i);
'integer range 0 to (2**4) - 1'
So it is going out of range. A simple workaround is to range it from 0 to 10 however I do not know it that is neat.
The text was updated successfully, but these errors were encountered:
controller.vhd at simulation throws range error for:
49 round_constant <= rcon_table((i + 1)*8 - 1 downto 8*i);
'integer range 0 to (2**4) - 1'
So it is going out of range. A simple workaround is to range it from 0 to 10 however I do not know it that is neat.
The text was updated successfully, but these errors were encountered: