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:
Daniel Schultz 2021-03-17 19:11:49 +01:00
parent 3b472bd657
commit 772c4280ac
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ def run():
def bitfilter(frame, bit):
# 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.write()