mirror of https://github.com/openXC7/prjxray.git
Fix wrapping.
Signed-off-by: Tim 'mithro' Ansell <me@mith.ro>
This commit is contained in:
parent
cf64309ee3
commit
21a33e50a1
|
|
@ -212,7 +212,8 @@ for segname, segdata in grid["segments"].items():
|
||||||
print(" loading %s segbits." % segtype)
|
print(" loading %s segbits." % segtype)
|
||||||
with db_open("segbits_%s.db" % segtype) as f:
|
with db_open("segbits_%s.db" % segtype) as f:
|
||||||
for line in f:
|
for line in f:
|
||||||
if re.search(r"(\.[ABCD](5?FF|OUT)MUX\.)|(\.PRECYINIT\.)", line):
|
if re.search(r"(\.[ABCD](5?FF|OUT)MUX\.)|(\.PRECYINIT\.)",
|
||||||
|
line):
|
||||||
add_pip_bits(line)
|
add_pip_bits(line)
|
||||||
else:
|
else:
|
||||||
add_single_bit(line)
|
add_single_bit(line)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue