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: d393c5ec644b
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: f17375a60b8a
Choose a head ref
  • 3 commits
  • 8 files changed
  • 1 contributor

Commits on May 26, 2019

  1. Copy the full SHA
    b0ba960 View commit details
  2. Add versioneer.

    whitequark committed May 26, 2019
    Copy the full SHA
    578dba2 View commit details
  3. back.rtlil: allow specifying platform for convert().

    whitequark committed May 26, 2019
    Copy the full SHA
    f17375a View commit details
Showing with 2,374 additions and 5 deletions.
  1. +1 −0 .gitattributes
  2. +4 −0 nmigen/__init__.py
  3. +520 −0 nmigen/_version.py
  4. +2 −2 nmigen/back/rtlil.py
  5. +13 −0 nmigen/hdl/ir.py
  6. +7 −0 setup.cfg
  7. +5 −3 setup.py
  8. +1,822 −0 versioneer.py
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nmigen/_version.py export-subst
4 changes: 4 additions & 0 deletions nmigen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
from ._version import get_versions
__version__ = get_versions()['version']
del get_versions

from .hdl.ast import Value, Const, C, Mux, Cat, Repl, Array, Signal, ClockSignal, ResetSignal
from .hdl.dsl import Module
from .hdl.cd import ClockDomain
Loading