diff options
| author | Tim 'mithro' Ansell <me@mith.ro> | 2018-06-12 19:15:17 -0700 |
|---|---|---|
| committer | Tim 'mithro' Ansell <me@mith.ro> | 2018-06-12 19:18:50 -0700 |
| commit | 82f2f3d278fe64a8053cb633e98287b21bb4b684 (patch) | |
| tree | 4ae5735580b8d61ccff8fd2540bcedca9cec3fe7 /icebox/icebox_asc2hlc.py | |
| parent | d8d30fa63000fab66e770db996c4bb90dcb90420 (diff) | |
HLC: Use '~>' instead of '<->' for routing switches.
As mentioned in ca6b2d9ebd521ecec58b9b5627c9380355adeab1, the 'routing'
switches are not actually bidirectional. This makes the '<->' specifier
very misleading.
Instead use '~>' to differentiate it from the 'buffer' switches.
Diffstat (limited to 'icebox/icebox_asc2hlc.py')
| -rwxr-xr-x | icebox/icebox_asc2hlc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/icebox/icebox_asc2hlc.py b/icebox/icebox_asc2hlc.py index 4f0f6fa..facca4b 100755 --- a/icebox/icebox_asc2hlc.py +++ b/icebox/icebox_asc2hlc.py @@ -797,7 +797,7 @@ class Tile: self.ic.max_y - 1, entry[3]) if dst == 'fabout': dst = lookup_fabout(*self.xy) - self.buffer_and_routing.add((src, '<->', dst)) + self.buffer_and_routing.add((src, '~>', dst)) continue if entry[1] == 'buffer': if match: |
