Skip to content

Commit

Permalink
fix import data
Browse files Browse the repository at this point in the history
  • Loading branch information
mmicko committed Sep 20, 2023
1 parent 3556c44 commit 6036e66
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion timing/util/pip_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import tiles
import json
lc_input_re = re.compile(r'(J?[ABCDM]|CLK|LSR|CE)\d')
lc_output_re = re.compile(r'J?[FQ]|CLK\d')
lc_output_re = re.compile(r'J?[FQ]|CLK|JCLK\d')

def get_span(wire):
if (wire.startswith("H") or wire.startswith("V")) and wire[1:3].isdigit():
Expand Down Expand Up @@ -74,6 +74,8 @@ def get_pip_class(source, sink):
return "global_to_" + get_span(sink_base)
elif "BOUNCE" in source_base:
return None
elif "KEEP" in source_base:
return None
else:
assert False, (source, sink)
elif source_base.startswith("LSR") and sink_base.startswith("MUXLSR"):
Expand Down

0 comments on commit 6036e66

Please sign in to comment.