icestorm/icefuzz/export.py

17 lines
549 B
Python
Raw Normal View History

2015-08-22 09:36:28 +02:00
#!/usr/bin/env python3
import os
device_class = os.getenv("ICEDEVICE")
2015-07-18 13:10:40 +02:00
with open("../icebox/iceboxdb.py", "w") as f:
files = [ "database_io", "database_logic", "database_ramb", "database_ramt"]
for device_class in ["5k", "8k"]:
files.append("database_ramb_" + device_class)
files.append("database_ramt_" + device_class)
for i in files:
2015-07-18 13:10:40 +02:00
print('%s_txt = """' % i, file=f)
with open("%s.txt" % i, "r") as fi:
for line in fi:
print(line, end="", file=f)
print('"""', file=f)