fix some imports
This commit is contained in:
parent
fda5ea0522
commit
94e5c254eb
|
@ -1,6 +1,6 @@
|
||||||
from liteeth.common import *
|
from liteeth.common import *
|
||||||
from liteeth.core.mac.core import gap, preamble, crc, padding, last_be
|
from liteeth.core.mac.core import gap, preamble, crc, padding, last_be
|
||||||
from liteeth.phy.sim import LiteEthPHYSim
|
from liteeth.phy.model import LiteEthPHYModel
|
||||||
from liteeth.phy.mii import LiteEthPHYMII
|
from liteeth.phy.mii import LiteEthPHYMII
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
from liteeth.common import *
|
from liteeth.common import *
|
||||||
from litex.soc.cores.liteeth_mini.mac.frontend import sram
|
from liteeth.core.mac.frontend import sram
|
||||||
|
|
||||||
from litex.soc.interconnect import wishbone
|
from litex.soc.interconnect import wishbone
|
||||||
from litex.gen.fhdl.simplify import FullMemoryWE
|
from litex.gen.fhdl.simplify import FullMemoryWE
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from litex.soc.cores.liteeth_mini.common import *
|
from liteeth.common import *
|
||||||
|
|
||||||
|
|
||||||
class LiteEthPHYModelCRG(Module, AutoCSR):
|
class LiteEthPHYModelCRG(Module, AutoCSR):
|
||||||
|
|
Loading…
Reference in New Issue