mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
Use common definition for FinalizeError
This commit is contained in:
parent
b75fb7f97c
commit
2b8dc52c13
3 changed files with 3 additions and 6 deletions
|
@ -3,9 +3,6 @@ from migen.genlib.misc import optree
|
|||
from migen.bus.transactions import *
|
||||
from migen.sim.generic import Proxy, PureSimulable
|
||||
|
||||
class FinalizeError(Exception):
|
||||
pass
|
||||
|
||||
(SLOT_EMPTY, SLOT_PENDING, SLOT_PROCESSING) = range(3)
|
||||
|
||||
class Slot:
|
||||
|
|
|
@ -276,3 +276,6 @@ class ClockDomain:
|
|||
n_rst = n2
|
||||
self.clk = Signal(name_override=n_clk)
|
||||
self.rst = Signal(name_override=n_rst)
|
||||
|
||||
class FinalizeError(Exception):
|
||||
pass
|
||||
|
|
|
@ -3,9 +3,6 @@ from operator import itemgetter
|
|||
from migen.fhdl.structure import *
|
||||
from migen.fhdl import visit as fhdl
|
||||
|
||||
class FinalizeError(Exception):
|
||||
pass
|
||||
|
||||
class AbstractLoad:
|
||||
def __init__(self, target, source):
|
||||
self.target = target
|
||||
|
|
Loading…
Reference in a new issue