NXP / i3c-slave-design

MIPI I3C Basic v1.0 communication Slave source code in Verilog with BSD license to support use in sensors and other devices.
Other
104 stars 33 forks source link

Lint check problem #1

Closed rehayes closed 5 years ago

rehayes commented 7 years ago

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".

pkimelman-nxp commented 5 years ago

Sorry, I did not reply. You are correct and that was fixed in the updates. Thanks for the feedback.