Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kestrel Collaboration
Kestrel LiteX
migen
Commits
2b8dc52c
Commit
2b8dc52c
authored
11 years ago
by
Sebastien Bourdeauducq
Browse files
Options
Download
Email Patches
Plain Diff
Use common definition for FinalizeError
parent
b75fb7f9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
migen/bus/asmibus.py
migen/bus/asmibus.py
+0
-3
migen/fhdl/structure.py
migen/fhdl/structure.py
+3
-0
migen/pytholite/reg.py
migen/pytholite/reg.py
+0
-3
No files found.
migen/bus/asmibus.py
View file @
2b8dc52c
...
@@ -3,9 +3,6 @@ from migen.genlib.misc import optree
...
@@ -3,9 +3,6 @@ from migen.genlib.misc import optree
from
migen.bus.transactions
import
*
from
migen.bus.transactions
import
*
from
migen.sim.generic
import
Proxy
,
PureSimulable
from
migen.sim.generic
import
Proxy
,
PureSimulable
class
FinalizeError
(
Exception
):
pass
(
SLOT_EMPTY
,
SLOT_PENDING
,
SLOT_PROCESSING
)
=
range
(
3
)
(
SLOT_EMPTY
,
SLOT_PENDING
,
SLOT_PROCESSING
)
=
range
(
3
)
class
Slot
:
class
Slot
:
...
...
This diff is collapsed.
Click to expand it.
migen/fhdl/structure.py
View file @
2b8dc52c
...
@@ -276,3 +276,6 @@ class ClockDomain:
...
@@ -276,3 +276,6 @@ class ClockDomain:
n_rst
=
n2
n_rst
=
n2
self
.
clk
=
Signal
(
name_override
=
n_clk
)
self
.
clk
=
Signal
(
name_override
=
n_clk
)
self
.
rst
=
Signal
(
name_override
=
n_rst
)
self
.
rst
=
Signal
(
name_override
=
n_rst
)
class
FinalizeError
(
Exception
):
pass
This diff is collapsed.
Click to expand it.
migen/pytholite/reg.py
View file @
2b8dc52c
...
@@ -3,9 +3,6 @@ from operator import itemgetter
...
@@ -3,9 +3,6 @@ from operator import itemgetter
from
migen.fhdl.structure
import
*
from
migen.fhdl.structure
import
*
from
migen.fhdl
import
visit
as
fhdl
from
migen.fhdl
import
visit
as
fhdl
class
FinalizeError
(
Exception
):
pass
class
AbstractLoad
:
class
AbstractLoad
:
def
__init__
(
self
,
target
,
source
):
def
__init__
(
self
,
target
,
source
):
self
.
target
=
target
self
.
target
=
target
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment