vendor.board: extract package.

This commit is contained in:
whitequark 2019-06-03 16:14:59 +00:00
parent 2ca0834d41
commit 0fa45b5e14
5 changed files with 7 additions and 7 deletions

View file

@ -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):

0
nmigen/vendor/board/__init__.py vendored Normal file
View file

View file

@ -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"]

View file

@ -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"]

View file

@ -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"]