From: Luke Kenneth Casson Leighton Date: Sat, 20 Feb 2021 12:37:54 +0000 (+0000) Subject: expand core size to 28000 X-Git-Tag: LS180_RC3~188^2~2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b8fec3da8c3d8bdb75c46ce03ae91e82421c2f29;p=soclayout.git expand core size to 28000 --- diff --git a/experiments9/doDesign.py b/experiments9/doDesign.py index 890564d..0253e78 100644 --- a/experiments9/doDesign.py +++ b/experiments9/doDesign.py @@ -25,7 +25,7 @@ def scriptMain (**kw): """The mandatory function to be called by Coriolis CGT/Unicorn.""" global af rvalue = True - coreSize = 26000 + coreSize = 28000 cwd = os.path.split( os.path.abspath(__file__) )[0] ioSpecs = IoSpecs() ioSpecs.loadFromPinmux( '{}/ls180/litex_pinpads.json'.format(cwd) ) @@ -34,8 +34,8 @@ def scriptMain (**kw): cell, editor = plugins.kwParseMain( **kw ) cell = af.getCell( 'ls180', CRL.Catalog.State.Logical ) if cell is None: - print( ErrorMessage( 2, 'doDesign.scriptMain(): Unable to load cell "{}".' \ - .format('ls180') )) + print( ErrorMessage( 2, 'doDesign.scriptMain(): Unable to ' + 'load cell "{}".'.format('ls180') )) sys.exit(1) if editor: editor.setCell( cell ) ls180Conf = ChipConf( cell, ioPads=ioSpecs.ioPadsSpec )