mirror of https://github.com/openXC7/prjxray.git
fix bitfilters in 030-iob18 and 036-iob18-ologic
Signed-off-by: Hans Baier <hansfbaier@gmail.com>
This commit is contained in:
parent
b57be1be1d
commit
0a10eb62cf
|
|
@ -19,11 +19,7 @@ import csv
|
||||||
from iostandards import *
|
from iostandards import *
|
||||||
|
|
||||||
def bitfilter(frame, word):
|
def bitfilter(frame, word):
|
||||||
# the fuzzers seem to find bits in frame 24 which seems
|
return 38 <= frame
|
||||||
# to be used by other tile types
|
|
||||||
if frame < 30:
|
|
||||||
return False
|
|
||||||
return True
|
|
||||||
|
|
||||||
def mk_drive_opt(iostandard, drive):
|
def mk_drive_opt(iostandard, drive):
|
||||||
if drive is None:
|
if drive is None:
|
||||||
|
|
|
||||||
|
|
@ -18,14 +18,7 @@ DEBUG_FUZZER = False
|
||||||
|
|
||||||
|
|
||||||
def bitfilter(frame, word):
|
def bitfilter(frame, word):
|
||||||
# TODO: do we need this here?
|
return 30 <= frame and frame <= 33
|
||||||
# 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
|
|
||||||
|
|
||||||
|
|
||||||
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