Hi guys,
I want create a hash table, use bit[9:0] as index to find value ( bit [59:0] queue ). So I think maybe I can use a queues of associative arrays. But unfortunately, I don`t know how to use it.
I tried like this:
bit [59:0][$] hash_q[bit[9:0]];
hash_q[idx].push_back(data);
Then I get errors,Error-[IBC] Invalid bounds count, Error-[XMRE] Cross-module reference resolution error.
Anyone can help me to solve this, thank you. For SV, is it a correct way to deal with this?