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: 20f9ab9d7a6e
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: 07dc1631054c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 30, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    07dc163 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 nmigen/hdl/mem.py
2 changes: 1 addition & 1 deletion nmigen/hdl/mem.py
Original file line number Diff line number Diff line change
@@ -145,7 +145,7 @@ def elaborate(self, platform):
# value of the data output is forcibly set to the 0th initial value, if any--note that
# many FPGAs do not guarantee this behavior!
if len(self.memory.init) > 0:
self.data.reset = self.memory.init[0]
self.data.reset = operator.index(self.memory.init[0])
latch_addr = Signal.like(self.addr)
f.add_statements(
latch_addr.eq(self.addr),