mirror of https://github.com/openXC7/prjxray.git
Adjust 032-cmt-pll fuzzer for A100T device
This commit allows the 032-cmt-pll fuzzer to find the bits that disappeared after changing the main fuzzed device from A50T to A100T. Signed-off-by: Robert Winkler <rwinkler@antmicro.com>
This commit is contained in:
parent
1478ab4e6b
commit
996bcfd7a1
|
|
@ -98,12 +98,12 @@ def bus_tags(segmk, ps, site):
|
|||
segmk.add_site_tag(
|
||||
site, 'COMPENSATION.ZHOLD_NO_CLKIN_BUF_NO_TOP', match and \
|
||||
not bufg_on_clkin and \
|
||||
site != "PLLE2_ADV_X0Y2"
|
||||
site != "PLLE2_ADV_X0Y3" and site != "PLLE2_ADV_X0Y0"
|
||||
)
|
||||
segmk.add_site_tag(
|
||||
site, 'COMP.ZHOLD_NO_CLKIN_BUF_TOP', match and \
|
||||
not bufg_on_clkin and \
|
||||
site == "PLLE2_ADV_X0Y2"
|
||||
(site == "PLLE2_ADV_X0Y3" or site == "PLLE2_ADV_X0Y0")
|
||||
)
|
||||
|
||||
# No INTERNAL as it has conflicting bits
|
||||
|
|
|
|||
Loading…
Reference in New Issue