Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Two State Logic LINT violations - el2_pdef.vh #105

Open
nstewart-amd opened this issue Aug 14, 2023 · 0 comments
Open

Two State Logic LINT violations - el2_pdef.vh #105

nstewart-amd opened this issue Aug 14, 2023 · 0 comments

Comments

@nstewart-amd
Copy link

├── el2_pdef.vh # Parameter structure definition

Values defined in el2_pdef.vh are defined as "bit", which is 2-state only variable.
Since standard verification flows wish to model "X" propagation, these variables should be multi-state "logic" instead of "bit".

Example:
bit [7:0] BHT_ADDR_HI;

Required for support for "X" propagation modelling in simulation:
logic [7:0] BHT_ADDR_HI;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant