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

Signed-off-by: Hans Baier <hansfbaier@gmail.com>
This commit is contained in:
Hans Baier 2022-11-22 03:22:04 +07:00
parent b57be1be1d
commit 0a10eb62cf
2 changed files with 2 additions and 13 deletions

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:

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: