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
ea6e4837
Commit
ea6e4837
authored
6 years ago
by
bunnie
Committed by
Sébastien Bourdeauducq
6 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Fix issue where BusSynchronizer fails when iclock << oclock
parent
076ec0dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
migen/genlib/cdc.py
migen/genlib/cdc.py
+1
-1
No files found.
migen/genlib/cdc.py
View file @
ea6e4837
...
@@ -107,7 +107,7 @@ class BusSynchronizer(Module):
...
@@ -107,7 +107,7 @@ class BusSynchronizer(Module):
self
.
comb
+=
[
self
.
comb
+=
[
self
.
_timeout
.
wait
.
eq
(
~
self
.
_ping
.
i
),
self
.
_timeout
.
wait
.
eq
(
~
self
.
_ping
.
i
),
self
.
_ping
.
i
.
eq
(
starter
|
self
.
_pong
.
o
|
self
.
_timeout
.
done
),
self
.
_ping
.
i
.
eq
(
starter
|
self
.
_pong
.
o
|
self
.
_timeout
.
done
),
self
.
_pong
.
i
.
eq
(
self
.
_ping
.
i
)
self
.
_pong
.
i
.
eq
(
self
.
_ping
.
o
)
]
]
ibuffer
=
Signal
(
width
,
reset_less
=
True
)
ibuffer
=
Signal
(
width
,
reset_less
=
True
)
...
...
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