diff options
| author | David Shah <davey1576@gmail.com> | 2018-01-13 15:55:32 +0000 |
|---|---|---|
| committer | David Shah <davey1576@gmail.com> | 2018-01-16 15:17:20 +0000 |
| commit | a59472812c808416d2a56bccc07a9540357e18d9 (patch) | |
| tree | c9052ba7174542a307b883190e3821cfe4d81d84 /icefuzz/database.py | |
| parent | 02a986b2f4b9d0cf5166a8a4915abe196116d259 (diff) | |
Remove seperate 5k RAM DB and share with 8k instead
This should ensure that the 5k RAM routing entries are now complete,
fixing #115
Diffstat (limited to 'icefuzz/database.py')
| -rw-r--r-- | icefuzz/database.py | 4 |
1 files changed, 2 insertions, 2 deletions
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) |
