fix bitfilters in 030-iob18 and 036-iob18-ologic

Signed-off-by: Hans Baier <[email protected]>
This commit is contained in:
Hans Baier
2024-01-08 14:00:20 +07:00
parent b57be1be1d
commit 0a10eb62cf
2 changed files with 2 additions and 13 deletions
+1 -5
View File
@@ -19,11 +19,7 @@ import csv
from iostandards import *
def bitfilter(frame, word):
# the fuzzers seem to find bits in frame 24 which seems
# to be used by other tile types
if frame < 30:
return False
return True
return 38 <= frame
def mk_drive_opt(iostandard, drive):
if drive is None:
+1 -8
View File
@@ -18,14 +18,7 @@ DEBUG_FUZZER = False
def bitfilter(frame, word):
# TODO: do we need this here?
# this frame number limit does not seem
# to apply to 1.8V high speed banks
#if frame < 30 or frame > 37:
# return False
return True
return 30 <= frame and frame <= 33
def handle_data_width(segmk, d):
if 'DATA_WIDTH' not in d: