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
Bender.yml
Generate a Bender.yml file populated with the SV files needed for synthesis. Template:
package: name: {{ name }} authors: ["SiLago team <[email protected]>"] %{ if dependencies %} dependencies: {% for dep in dependencies %} {% if dep.type == "git" %} {{ dep.name }}: \{ git: "{{ dep.git_url}}", rev: "{{ dep.git_rev }}" \} {% else %} {{ dep.name }}: \{ path: "{{ dep.path }}" \} {% endif %} {% endfor %} {% endif %} sources: {% for source in sources %} - {{ source }} {% endfor %}
The text was updated successfully, but these errors were encountered:
The list of sources should exclude the testbench file (not synthesizable). It can be conditionally included as a target sim in bender
sim
sources: {% for source in sources %} - {{ source }} {% endfor %} {% if testbench %} - target: sim files: {% for tb in testbench_files %} - {{ tb }} {% endfor %} {% endif %}
Sorry, something went wrong.
Done
No branches or pull requests
Generate a
Bender.yml
file populated with the SV files needed for synthesis.Template:
The text was updated successfully, but these errors were encountered: