
Requres every elaboratable to inherit from Elaboratable, but still accepts ones that do not, with a warning. Fixes #3.
7 lines
233 B
Python
7 lines
233 B
Python
from ..hdl.ir import Elaboratable
|
|
|
|
|
|
# The nMigen testsuite creates a lot of elaboratables that are intentionally unused.
|
|
# Disable the unused elaboratable check, as in our case it provides nothing but noise.
|
|
del Elaboratable.__del__
|