lib.fifo: add basic formal specification.

This commit is contained in:
whitequark 2019-01-17 05:26:54 +00:00
parent fa8e876356
commit 5a831ce31c
4 changed files with 177 additions and 0 deletions

View file

@ -1,6 +1,7 @@
"""First-in first-out queues."""
from .. import *
from ..formal import *
__all__ = ["FIFOInterface", "SyncFIFO", "SyncFIFOBuffered"]