aboutsummaryrefslogtreecommitdiffstats
path: root/icefuzz/export.py
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-01-13 15:55:32 +0000
committerDavid Shah <davey1576@gmail.com>2018-01-16 15:17:20 +0000
commita59472812c808416d2a56bccc07a9540357e18d9 (patch)
treec9052ba7174542a307b883190e3821cfe4d81d84 /icefuzz/export.py
parent02a986b2f4b9d0cf5166a8a4915abe196116d259 (diff)
downloadicestorm-a59472812c808416d2a56bccc07a9540357e18d9.tar.gz
icestorm-a59472812c808416d2a56bccc07a9540357e18d9.tar.bz2
icestorm-a59472812c808416d2a56bccc07a9540357e18d9.zip
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/export.py')
-rw-r--r--icefuzz/export.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/icefuzz/export.py b/icefuzz/export.py
index 0aae954..4a2444a 100644
--- a/icefuzz/export.py
+++ b/icefuzz/export.py
@@ -5,7 +5,7 @@ device_class = os.getenv("ICEDEVICE")
with open("../icebox/iceboxdb.py", "w") as f:
files = [ "database_io", "database_logic", "database_ramb", "database_ramt", "database_ipcon_5k"]
- for device_class in ["5k", "8k"]:
+ for device_class in ["8k"]:
files.append("database_ramb_" + device_class)
files.append("database_ramt_" + device_class)
for i in range(4):