From: Luke Kenneth Casson Leighton Date: Mon, 6 Apr 2020 16:18:34 +0000 (+0000) Subject: invert pin-direction to make it sort-of "mirror" X-Git-Tag: partial-core-ls180-gdsii~144 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9d37cb3d884fe678bb54aa0fc735acf880de49a1;p=soclayout.git invert pin-direction to make it sort-of "mirror" --- diff --git a/experiments7/doAlu16.py b/experiments7/doAlu16.py index 427b16f..15fbd26 100755 --- a/experiments7/doAlu16.py +++ b/experiments7/doAlu16.py @@ -148,9 +148,9 @@ def ScriptMain(editor=None, **kwargs): add = AddSub( 'add', editor, north_pins=[ - {'net': 'a({})', 'x': 10.0, 'delta': 10.0, 'repeat': BIT_WIDTH}, - {'net': 'b({})', 'x': 15.0, 'delta': 10.0, 'repeat': BIT_WIDTH}, - {'net': 'o({})', 'x': 180.0, 'delta': 10.0, 'repeat': BIT_WIDTH}, + {'net': 'a({})', 'x': 165.0, 'delta': -10.0, 'repeat': BIT_WIDTH}, + {'net': 'b({})', 'x': 160.0, 'delta': -10.0, 'repeat': BIT_WIDTH}, + {'net': 'o({})', 'x': 340.0, 'delta': -10.0, 'repeat': BIT_WIDTH}, ], south_pins=[ ],