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: m-labs/nmigen
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 99d205494a89
Choose a base ref
...
head repository: m-labs/nmigen
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8dd54ac5444d
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Aug 3, 2019

  1. compat.fhdl.specials: track changes in build.plat.

    whitequark committed Aug 3, 2019
    Copy the full SHA
    0fe0518 View commit details
  2. Copy the full SHA
    8dd54ac View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 nmigen/build/run.py
  2. +1 −1 nmigen/compat/fhdl/specials.py
2 changes: 1 addition & 1 deletion nmigen/build/run.py
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@ def archive(self, file):
for filename in sorted(self.files):
archive.writestr(zipfile.ZipInfo(filename), self.files[filename])

def execute_local(self, root="build", run_script=True):
def execute_local(self, root="build", *, run_script=True):
"""
Execute build plan using the local strategy. Files from the build plan are placed in
the build root directory ``root``, and, if ``run_script`` is ``True``, the script
2 changes: 1 addition & 1 deletion nmigen/compat/fhdl/specials.py
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ def elaborate(self, platform):
pin.oe = self.oe
if self.i is not None:
pin.i = self.i
return platform.get_input_output(pin, self.target, extras={})
return platform.get_input_output(pin, self.target, attrs={}, invert=None)

m = Module()
m.d.comb += self.i.eq(self.target)