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
base: 53bb4300a36a
Choose a base ref
...
head repository: m-labs/nmigen
compare: e3a1d05f233d
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 24, 2019

  1. back.rtlil: fix handling of certain nested arrays.

    This triggers on code like:
    
    c1 = Signal()
    c2 = Signal()
    c3 = Signal()
    v1 = Array([Const(1, 8), Const(2, 8)])[c1]
    v2 = Array([Const(3, 8), Const(4, 8)])[c2]
    v3 = Array([v1, v2])[c3]
    
    Fixes #226.
    whitequark committed Sep 24, 2019
    Configuration menu
    Copy the full SHA
    e3a1d05 View commit details
    Browse the repository at this point in the history