diff --git a/nmigen/compat/genlib/fifo.py b/nmigen/compat/genlib/fifo.py index 896b26b..4e412d3 100644 --- a/nmigen/compat/genlib/fifo.py +++ b/nmigen/compat/genlib/fifo.py @@ -6,8 +6,8 @@ from ...lib.fifo import FIFOInterface as NativeFIFOInterface, \ __all__ = ["_FIFOInterface", "SyncFIFO", "SyncFIFOBuffered", "AsyncFIFO", "AsyncFIFOBuffered"] -@deprecated("attribute `fwft` must be provided to FIFOInterface constructor") class CompatFIFOInterface(NativeFIFOInterface): + @deprecated("attribute `fwft` must be provided to FIFOInterface constructor") def __init__(self, width, depth): super().__init__(width, depth, fwft=False) del self.fwft