Nic30 / hwt

VHDL/Verilog/SystemC code generator, simulator API written in python/c++
MIT License
194 stars 26 forks source link

multidimensional index in vhdl #22

Closed Nic30 closed 4 years ago

Nic30 commented 4 years ago

It seems that index on multidimensional arrays is like this:

mem(1)(1)

not like this:

mem(1, 1)

as it should be.

Nic30 commented 4 years ago

Actually mem(1)(1) is correct but there is missing support for arrays with multiple indexes.