mirror of https://github.com/YosysHQ/icestorm.git
LP384 support in icefuzz (Makefile,icebox.sh,etc)
This commit is contained in:
parent
d3e368828e
commit
2281f91536
|
|
@ -5,6 +5,7 @@ import sys, re
|
|||
db = set()
|
||||
text_db = dict()
|
||||
mode_8k = False
|
||||
mode_384 = False
|
||||
cur_text_db = None
|
||||
max_x, max_y = 0, 0
|
||||
|
||||
|
|
@ -12,6 +13,10 @@ if sys.argv[1] == '-8':
|
|||
sys.argv = sys.argv[1:]
|
||||
mode_8k = True
|
||||
|
||||
if sys.argv[1] == '-3':
|
||||
sys.argv = sys.argv[1:]
|
||||
mode_384 = True
|
||||
|
||||
for filename in sys.argv[1:]:
|
||||
with open(filename, "r") as f:
|
||||
for line in f:
|
||||
|
|
|
|||
Loading…
Reference in New Issue