From 28051361353ac64eef4e510b0157cacbc8c37244 Mon Sep 17 00:00:00 2001 From: Hans Baier Date: Fri, 2 Dec 2022 04:50:08 +0700 Subject: [PATCH] 036-iob18-ologic: Allow for frames 38 and 39, because otherwise the IO won't work --- fuzzers/036-iob18-ologic/generate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzzers/036-iob18-ologic/generate.py b/fuzzers/036-iob18-ologic/generate.py index 5590af52..42c27019 100644 --- a/fuzzers/036-iob18-ologic/generate.py +++ b/fuzzers/036-iob18-ologic/generate.py @@ -18,7 +18,7 @@ DEBUG_FUZZER = False def bitfilter(frame, word): - return 30 <= frame and frame <= 33 + return (30 <= frame and frame <= 33) or frame == 38 or frame == 39 def handle_data_width(segmk, d): if 'DATA_WIDTH' not in d: