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
90e4101b
Commit
90e4101b
authored
6 years ago
by
Robert Jordens
Browse files
Options
Download
Email Patches
Plain Diff
fifo: make din/dout reset_less
parent
7d3afa4c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
migen/genlib/fifo.py
migen/genlib/fifo.py
+2
-2
No files found.
migen/genlib/fifo.py
View file @
90e4101b
...
...
@@ -54,8 +54,8 @@ class _FIFOInterface:
self
.
re
=
Signal
()
self
.
readable
=
Signal
()
# not empty
self
.
din
=
Signal
(
width
)
self
.
dout
=
Signal
(
width
)
self
.
din
=
Signal
(
width
,
reset_less
=
True
)
self
.
dout
=
Signal
(
width
,
reset_less
=
True
)
self
.
width
=
width
self
.
depth
=
depth
...
...
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