mirror of https://github.com/openXC7/prjxray.git
fuzzers: 025-bram-config: exclude frame 0
Add an exclusion for frame 0 because this does not contain any bits and the database checks fails. Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
This commit is contained in:
parent
3b472bd657
commit
772c4280ac
|
|
@ -168,7 +168,7 @@ def run():
|
||||||
|
|
||||||
def bitfilter(frame, bit):
|
def bitfilter(frame, bit):
|
||||||
# rw_width_tags() aliasing interconnect on large widths
|
# rw_width_tags() aliasing interconnect on large widths
|
||||||
return frame not in (20, 21)
|
return frame not in (0, 20, 21)
|
||||||
|
|
||||||
segmk.compile(bitfilter=bitfilter)
|
segmk.compile(bitfilter=bitfilter)
|
||||||
segmk.write()
|
segmk.write()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue