In reply to dave_59:
Hi Dave,
How to assign or drive associative array elements?
My requirement is :
int arry[string];
wire penable_0, penable_1; //Assume drivers on these wires are present and their value will be either 0 or 1
arry[“a”] = penable_0;
arry[“b”] = penable_1;
I want continuous assignment on “a” and “b”.
Is there a way to do it?