Commit 90e4101b authored by Robert Jordens's avatar Robert Jordens
Browse files

fifo: make din/dout reset_less

parent 7d3afa4c
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment