Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: amaranth-lang/amaranth
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fd7d01ef1076
Choose a base ref
...
head repository: amaranth-lang/amaranth
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b1eba5fd82a8
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 11, 2021

  1. Copy the full SHA
    b1eba5f View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 amaranth/vendor/xilinx.py
3 changes: 2 additions & 1 deletion amaranth/vendor/xilinx.py
Original file line number Diff line number Diff line change
@@ -21,6 +21,7 @@ class XilinxPlatform(TemplatedPlatform):
Available overrides:
* ``script_after_read``: inserts commands after ``read_xdc`` in Tcl script.
* ``synth_design_opts``: sets options for ``synth_design``.
* ``script_after_synth``: inserts commands after ``synth_design`` in Tcl script.
* ``script_after_place``: inserts commands after ``place_design`` in Tcl script.
* ``script_after_route``: inserts commands after ``route_design`` in Tcl script.
@@ -151,7 +152,7 @@ def _part(self):
read_xdc {{file|tcl_escape}}
{% endfor %}
{{get_override("script_after_read")|default("# (script_after_read placeholder)")}}
synth_design -top {{name}}
synth_design -top {{name}} {{get_override("synth_design_opts")}}
foreach cell [get_cells -quiet -hier -filter {amaranth.vivado.false_path == "TRUE"}] {
set_false_path -to $cell
}