parent
2770db6de8
commit
32bfbb11cb
|
@ -993,7 +993,7 @@ def Fell(expr, clocks=0, domain=None):
|
||||||
|
|
||||||
@final
|
@final
|
||||||
class Initial(Value):
|
class Initial(Value):
|
||||||
"""Start indicator, for formal verification.
|
"""Start indicator, for model checking.
|
||||||
|
|
||||||
An ``Initial`` signal is ``1`` at the first cycle of model checking, and ``0`` at any other.
|
An ``Initial`` signal is ``1`` at the first cycle of model checking, and ``0`` at any other.
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""First-in first-out queues."""
|
"""First-in first-out queues."""
|
||||||
|
|
||||||
from .. import *
|
from .. import *
|
||||||
from ..formal import *
|
from ..asserts import *
|
||||||
from ..tools import log2_int
|
from ..tools import log2_int
|
||||||
from .coding import GrayEncoder
|
from .coding import GrayEncoder
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
from .tools import *
|
from .tools import *
|
||||||
from ..hdl import *
|
from ..hdl import *
|
||||||
from ..formal import *
|
from ..asserts import *
|
||||||
from ..back.pysim import *
|
from ..back.pysim import *
|
||||||
from ..lib.coding import *
|
from ..lib.coding import *
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
from .tools import *
|
from .tools import *
|
||||||
from ..hdl import *
|
from ..hdl import *
|
||||||
from ..formal import *
|
from ..asserts import *
|
||||||
from ..back.pysim import *
|
from ..back.pysim import *
|
||||||
from ..lib.fifo import *
|
from ..lib.fifo import *
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue