Lint check on line #154 of file i3c_autonomous.v has a size mismatch.
As is:
assign is_valid[i] = is_writable | is_readable;
I believe this should be:
assign is_valid[i] = is_writable[i] | is_readable[i];
There are other lint size mismatchs mostly related to assignments of "0".
Lint check on line #154 of file i3c_autonomous.v has a size mismatch. As is: assign is_valid[i] = is_writable | is_readable; I believe this should be: assign is_valid[i] = is_writable[i] | is_readable[i];
There are other lint size mismatchs mostly related to assignments of "0".