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
In the file fpu_shared.sv a parameter called C_FLAG is referred, which I can't find in the imported package fpu_defs.
fpu_shared.sv
C_FLAG
fpu_defs
logic [C_FLAG-1:0] Flags_S;
I'm assuming it is a typo and that it should instead be C_FFLAG, or have I missed something?
C_FFLAG
The text was updated successfully, but these errors were encountered:
Also: where is C_TAG defined? Could not find it from the root directory of the top pulp project (after running update-ips.
C_TAG
pulp
update-ips
It is referred to several places in fpu_shared.sv:
logic [C_TAG-1:0] Tag_D; logic [C_TAG-1:0] Tag_DN; logic [C_TAG-1:0] TagDelayed_DP; logic [C_TAG-1:0] TagDelayed_DN;
Sorry, something went wrong.
Update: after some digging I found that these constants were removed in this commit: ad74409#diff-33d976666548c67ed8fa812b20ddfe81
- parameter C_FLAG = 9; - parameter C_TAG = 7; + parameter C_FFLAG = 5;
I therefore assume that these modules are not really maintained at the moment or that the parameters come from somewhere else?
No branches or pull requests
In the file
fpu_shared.sv
a parameter calledC_FLAG
is referred, which I can't find in the imported packagefpu_defs
.I'm assuming it is a typo and that it should instead be
C_FFLAG
, or have I missed something?The text was updated successfully, but these errors were encountered: