From e2adc23681c35bf67834d636a62f4d9c7cf18220 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Fri, 22 Jun 2018 19:21:01 -0700 Subject: [PATCH 1/2] icebox_hlc2asc: Fix spelling in error message. --- icebox/icebox_hlc2asc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icebox/icebox_hlc2asc.py b/icebox/icebox_hlc2asc.py index c26b173..cb9ab1c 100755 --- a/icebox/icebox_hlc2asc.py +++ b/icebox/icebox_hlc2asc.py @@ -293,7 +293,7 @@ def revert_to_fabout(x, y, net): for i, xy in enumerate(GLB_NETWK_INTERNAL_TILES): if net == 'glb_netwk_%d' % i and (x, y) == xy: return 'fabout' - raise ParseError("{} is a global netowrk, but not at an expectd location {} {}".format(net, x, y)) + raise ParseError("{} is a global network, but not at an expected location {} {}".format(net, x, y)) return net @@ -956,7 +956,7 @@ class IOTile(Tile): if fields == ['io_1'] and self.blocks[1] is None: self.blocks[1] = IOBlock(self, 1) return self.blocks[1] - raise ParseError("Unepxected new block in {}".format(type(self).__name__)) + raise ParseError("Unexpected new block in {}".format(type(self).__name__)) class IOBlock: def __init__(self, tile, index): From a3ae94cbebb7f4b2863bac0ff086392938ebd6b3 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Fri, 22 Jun 2018 21:42:50 -0700 Subject: [PATCH 2/2] icebox_hlc2asc: Allow io_X/GLOBAL_OUTPUT_BUFFER --- icebox/icebox_hlc2asc.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/icebox/icebox_hlc2asc.py b/icebox/icebox_hlc2asc.py index cb9ab1c..c9b2a04 100755 --- a/icebox/icebox_hlc2asc.py +++ b/icebox/icebox_hlc2asc.py @@ -1006,7 +1006,9 @@ class IOBlock: self.enable_input = True elif fields == ['disable_pull_up'] and not self.disable_pull_up: self.disable_pull_up = True - elif fields[0] == 'GLOBAL_BUFFER_OUTPUT' and fields[1] == '->' \ + elif fields[0] in ('GLOBAL_BUFFER_OUTPUT', + 'io_%d/GLOBAL_BUFFER_OUTPUT' % self.index) \ + and fields[1] == '->' \ and fields[2].startswith('glb_netwk_'): if GLB_NETWK_EXTERNAL_BLOCKS[int(fields[2][10:])] \ != (self.tile.x, self.tile.y, self.index):