We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@NouranAbdelaziz
There is an error in mgmt_protect.v line 229
mgmt_protect.v
assign mprj_dat_i_core_bar = ~(mprj_dat_i_user & wb_in_enable);
This expression resolves to only one bit because wb_in_enable is one bit. The expression needs to be
wb_in_enable
assign mprj_dat_i_core_bar = ~(mprj_dat_i_user & {32{wb_in_enable}});
which extends wb_in_enable to 32 bits and therefore allows more than one bit to be passed back in data from the user project to the management SoC.
The text was updated successfully, but these errors were encountered:
NouranAbdelaziz
No branches or pull requests
@NouranAbdelaziz
There is an error in
mgmt_protect.v
line 229This expression resolves to only one bit because
wb_in_enable
is one bit. The expression needs to bewhich extends
wb_in_enable
to 32 bits and therefore allows more than one bit to be passed back in data from the user project to the management SoC.The text was updated successfully, but these errors were encountered: