hdl.mem: add missing __all__.
This commit is contained in:
parent
73ed870309
commit
de50ccec90
|
@ -5,6 +5,9 @@ from .ast import *
|
|||
from .ir import Instance
|
||||
|
||||
|
||||
__all__ = ["Memory"]
|
||||
|
||||
|
||||
class Memory:
|
||||
def __init__(self, width, depth, init=None, name=None, simulate=True):
|
||||
if not isinstance(width, int) or width < 0:
|
||||
|
|
Loading…
Reference in a new issue