Skip to content

Commit

Permalink
interconnect/stream: Force AsyncFIFO to buffered.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Jul 27, 2023
1 parent 65b5281 commit 86b4447
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions litex/soc/interconnect/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ class AsyncFIFO(_AsyncFIFOWrapper):
def __init__(self, layout, depth=None, buffered=False):
depth = 4 if depth is None else depth
assert depth >= 4
buffered = True
_AsyncFIFOWrapper.__init__(self,
layout = layout,
depth = depth,
Expand Down

0 comments on commit 86b4447

Please sign in to comment.