From: Tim 'mithro' Ansell Date: Fri, 21 Jun 2019 19:03:30 +0000 (-0700) Subject: Convert top level comment to a docstring. X-Git-Tag: 24jan2021_ls180~1154 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d8ac9362066eb88d0aef8cf883915f910a2eca7a;p=litex.git Convert top level comment to a docstring. --- diff --git a/litex/soc/cores/up5kspram.py b/litex/soc/cores/up5kspram.py index 573f8640..a4d79f25 100644 --- a/litex/soc/cores/up5kspram.py +++ b/litex/soc/cores/up5kspram.py @@ -1,11 +1,13 @@ from migen import * 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 -# RAM resources, this RAM is only minimally configurable at present (64kB or -# 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. +""" +ICE40 UltraPlus family-specific Wishbone interface to the Single Port RAM +(SPRAM) primitives. Because SPRAM is much more coarse grained than Block +RAM resources, this RAM is only minimally configurable at present (64kB or +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): def __init__(self, width=32, size=64*1024):