From a59472812c808416d2a56bccc07a9540357e18d9 Mon Sep 17 00:00:00 2001 From: David Shah Date: Sat, 13 Jan 2018 15:55:32 +0000 Subject: Remove seperate 5k RAM DB and share with 8k instead This should ensure that the 5k RAM routing entries are now complete, fixing #115 --- icefuzz/database.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'icefuzz/database.py') diff --git a/icefuzz/database.py b/icefuzz/database.py index a0caca6..ee94c03 100644 --- a/icefuzz/database.py +++ b/icefuzz/database.py @@ -148,7 +148,7 @@ with open("database_ramt.txt", "w") as f: for entry in read_database("bitdata_ramt.txt", "ramt"): print("\t".join(entry), file=f) -for device_class in ["5k", "8k"]: +for device_class in ["8k"]: with open("database_ramb_%s.txt" % (device_class, ), "w") as f: for entry in read_database("bitdata_ramb_%s.txt" % (device_class, ), "ramb_" + device_class): print("\t".join(entry), file=f) @@ -163,4 +163,4 @@ for dsp_idx in range(4): print("\t".join(entry), file=f) with open("database_ipcon_5k.txt", "w") as f: for entry in read_database("bitdata_ipcon_5k.txt", "ipcon"): - print("\t".join(entry), file=f) \ No newline at end of file + print("\t".join(entry), file=f) -- cgit v1.2.3