From 9d37cb3d884fe678bb54aa0fc735acf880de49a1 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 6 Apr 2020 16:18:34 +0000 Subject: [PATCH] invert pin-direction to make it sort-of "mirror" --- experiments7/doAlu16.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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=[ ], -- 2.30.2