hdl.mem: add missing __all__.

This commit is contained in:
whitequark 2018-12-26 17:15:54 +00:00
parent 73ed870309
commit de50ccec90

View file

@ -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: