From: dx-mon Date: Thu, 4 Feb 2021 03:10:44 +0000 (+0000) Subject: compat.genlib.roundrobin: fix missing imports X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=92abe62b8ee7b0acf4cf9028f976a1e33c00ab45;p=nmigen.git compat.genlib.roundrobin: fix missing imports --- diff --git a/nmigen/compat/genlib/roundrobin.py b/nmigen/compat/genlib/roundrobin.py index ce88b93..4c9f4a0 100644 --- a/nmigen/compat/genlib/roundrobin.py +++ b/nmigen/compat/genlib/roundrobin.py @@ -1,3 +1,6 @@ +import warnings + +from ..fhdl.structure import Signal, If, Case from ..._utils import deprecated from ..fhdl.module import CompatModule