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