mirror of https://github.com/openXC7/prjxray.git
036-iob18-ologic: Allow for frames 38 and 39, because otherwise the IO won't work
This commit is contained in:
parent
c0d2323e19
commit
2805136135
|
|
@ -18,7 +18,7 @@ DEBUG_FUZZER = False
|
||||||
|
|
||||||
|
|
||||||
def bitfilter(frame, word):
|
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):
|
def handle_data_width(segmk, d):
|
||||||
if 'DATA_WIDTH' not in d:
|
if 'DATA_WIDTH' not in d:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue