7 lines
162 B
Python
7 lines
162 B
Python
from amaranth.asserts import *
|
|
|
|
|
|
import warnings
|
|
warnings.warn("instead of nmigen.asserts, use amaranth.asserts",
|
|
DeprecationWarning, stacklevel=2)
|