mirror of https://github.com/openXC7/prjxray.git
Bugfix in 051-imuxlout fuzzer
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
0bfb664482
commit
0e7bcfc128
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import sys, re
|
import sys, re, os
|
||||||
|
|
||||||
sys.path.append("../../../utils/")
|
sys.path.append("../../../utils/")
|
||||||
from segmaker import segmaker
|
from segmaker import segmaker
|
||||||
|
|
@ -62,11 +62,11 @@ for tile, pips_srcs_dsts in tiledata.items():
|
||||||
segmk.addtag(tile, "%s.%s" % (dst, src), 0)
|
segmk.addtag(tile, "%s.%s" % (dst, src), 0)
|
||||||
|
|
||||||
def bitfilter(frame_idx, bit_idx):
|
def bitfilter(frame_idx, bit_idx):
|
||||||
assert os.getenv("XRAY_DATABASE") == "artix7"
|
assert os.getenv("XRAY_DATABASE") in ["artix7", "kintex7"]
|
||||||
if frame_idx in [30, 31]:
|
if frame_idx in [30, 31]:
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
segmk.compile()
|
segmk.compile(bitfilter=bitfilter)
|
||||||
segmk.write()
|
segmk.write()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue