diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-01-16 18:03:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-16 18:03:49 +0100 |
commit | edef5d246527a442c8c8025e89b6d9da06276d2d (patch) | |
tree | 3d67bf462292e3c0c75c308e662b84f22af7c318 /icefuzz/export.py | |
parent | bca8c3c88f5707213a6cc55ec7b06b576ab98809 (diff) | |
parent | 99857b1505fa6c651ad9cd4177d8fc68d3e3851c (diff) | |
download | icestorm-edef5d246527a442c8c8025e89b6d9da06276d2d.tar.gz icestorm-edef5d246527a442c8c8025e89b6d9da06276d2d.tar.bz2 icestorm-edef5d246527a442c8c8025e89b6d9da06276d2d.zip |
Merge pull request #116 from daveshah1/up5k_misc_fixes
Miscellaneous UltraPlus fixes and improvements
Diffstat (limited to 'icefuzz/export.py')
-rw-r--r-- | icefuzz/export.py | 2 |
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): |