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
Hello folks,
We have spotted a timing loop when using the reg_to_tlul.sv module.
reg_to_tlul.sv
It seems that we have a ready -> valid dependency here:
ready -> valid
register_interface/src/reg_to_tlul.sv
Line 31 in 50270f7
From a super quick look, I think we can just drop the & tl_i.a_ready masking.
& tl_i.a_ready
assign tl_o.a_valid = reg_req_i.valid;
Thank you, and let us know! ;-) Matteo
The text was updated successfully, but these errors were encountered:
Finders, keepers :) I suggest you open a PR for this so you are credited with fixing it.
Sorry, something went wrong.
No branches or pull requests
Hello folks,
We have spotted a timing loop when using the
reg_to_tlul.sv
module.It seems that we have a
ready -> valid
dependency here:register_interface/src/reg_to_tlul.sv
Line 31 in 50270f7
From a super quick look, I think we can just drop the
& tl_i.a_ready
masking.Thank you, and let us know! ;-)
Matteo
The text was updated successfully, but these errors were encountered: