Convert top level comment to a docstring.
This commit is contained in:
parent
45632c66b1
commit
d8ac936206
|
@ -1,11 +1,13 @@
|
||||||
from migen import *
|
from migen import *
|
||||||
from litex.soc.interconnect import wishbone
|
from litex.soc.interconnect import wishbone
|
||||||
|
|
||||||
# ICE40 UltraPlus family-specific Wishbone interface to the Single Port RAM
|
"""
|
||||||
# (SPRAM) primitives. Because SPRAM is much more coarse grained than Block
|
ICE40 UltraPlus family-specific Wishbone interface to the Single Port RAM
|
||||||
# RAM resources, this RAM is only minimally configurable at present (64kB or
|
(SPRAM) primitives. Because SPRAM is much more coarse grained than Block
|
||||||
# 128kB). Because it is single port, this module is meant to be used as the
|
RAM resources, this RAM is only minimally configurable at present (64kB or
|
||||||
# CPU's RAM region, leaving block RAM free for other use.
|
128kB). Because it is single port, this module is meant to be used as the
|
||||||
|
CPU's RAM region, leaving block RAM free for other use.
|
||||||
|
"""
|
||||||
|
|
||||||
class Up5kSPRAM(Module):
|
class Up5kSPRAM(Module):
|
||||||
def __init__(self, width=32, size=64*1024):
|
def __init__(self, width=32, size=64*1024):
|
||||||
|
|
Loading…
Reference in New Issue