hdl.mem: document Memory.
authorwhitequark <whitequark@whitequark.org>
Thu, 6 Feb 2020 13:47:13 +0000 (13:47 +0000)
committerwhitequark <whitequark@whitequark.org>
Thu, 6 Feb 2020 13:47:13 +0000 (13:47 +0000)
nmigen/hdl/mem.py

index 230bfa62604ddd1bc41eed4ef3ef90769950406e..fc6c011bf61a4de6e25a417e4286bdf122e9cd45 100644 (file)
@@ -9,6 +9,28 @@ __all__ = ["Memory", "ReadPort", "WritePort", "DummyPort"]
 
 
 class Memory:
+    """A word addressable storage.
+
+    Parameters
+    ----------
+    width : int
+        Access granularity. Each storage element of this memory is ``width`` bits in size.
+    depth : int
+        Word count. This memory contains ``depth`` storage elements.
+    init : list of int
+        Initial values. At power on, each storage element in this memory is initialized to
+        the corresponding element of ``init``, if any, or to zero otherwise.
+        Uninitialized memories are not currently supported.
+    name : str
+        Name hint for this memory. If ``None`` (default) the name is inferred from the variable
+        name this ``Signal`` is assigned to.
+
+    Attributes
+    ----------
+    width : int
+    depth : int
+    init : list of int
+    """
     def __init__(self, *, width, depth, init=None, name=None, simulate=True):
         if not isinstance(width, int) or width < 0:
             raise TypeError("Memory width must be a non-negative integer, not {!r}"