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: 2ca0834d4113
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: 3d04122d5569
Choose a head ref
  • 2 commits
  • 17 files changed
  • 1 contributor

Commits on Jun 3, 2019

  1. vendor.board: extract package.

    whitequark committed Jun 3, 2019
    Copy the full SHA
    0fa45b5 View commit details
  2. Copy the full SHA
    3d04122 View commit details
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/blinky.py → examples/board/blinky.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from nmigen import *
from nmigen.vendor.ice40_hx1k_blink_evn import *
from nmigen.vendor.board.ice40_hx1k_blink_evn import *


class Blinky(Elaboratable):
Empty file added nmigen/vendor/board/__init__.py
Empty file.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from ..build import *
from .fpga.lattice_ice40 import LatticeICE40Platform, IceBurnProgrammerMixin
from ...build import *
from ..fpga.lattice_ice40 import LatticeICE40Platform, IceBurnProgrammerMixin


__all__ = ["ICE40HX1KBlinkEVNPlatform"]
4 changes: 2 additions & 2 deletions nmigen/vendor/icestick.py → nmigen/vendor/board/icestick.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from ..build import *
from .fpga.lattice_ice40 import LatticeICE40Platform, IceStormProgrammerMixin
from ...build import *
from ..fpga.lattice_ice40 import LatticeICE40Platform, IceStormProgrammerMixin


__all__ = ["ICEStickPlatform"]
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from ..build import *
from .fpga.lattice_ice40 import LatticeICE40Platform, TinyProgrammerMixin
from ...build import *
from ..fpga.lattice_ice40 import LatticeICE40Platform, TinyProgrammerMixin


__all__ = ["TinyFPGABXPlatform"]