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
I have fallen into this trap and wonder if this might be a helpful change:
If a Verilog string parameter is passed in the fusesoc core file with quotation marks, e.g.,
parameters: [CHUNKSIZE=4, RFTYPE="BRAM_DP_BP", ICOBOARD=True]
it gets surrounded by another set of quotes, leading to the following erroneous statement in the edalize_yosys_procs.tcl script
edalize_yosys_procs.tcl
chparam -set RFTYPE {""BRAM_DP_BP""} top_ardutiny}
Suggested change: 45ad9f9 (Is there any loss of generality when stripping unescaped quotation marks?)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have fallen into this trap and wonder if this might be a helpful change:
If a Verilog string parameter is passed in the fusesoc core file with quotation marks, e.g.,
parameters: [CHUNKSIZE=4, RFTYPE="BRAM_DP_BP", ICOBOARD=True]
it gets surrounded by another set of quotes, leading to the following erroneous statement in the
edalize_yosys_procs.tcl
scriptchparam -set RFTYPE {""BRAM_DP_BP""} top_ardutiny}
Suggested change: 45ad9f9 (Is there any loss of generality when stripping unescaped quotation marks?)
The text was updated successfully, but these errors were encountered: