mirror of https://github.com/YosysHQ/icestorm.git
Merge pull request #180 from litghost/add_5x
Add 5k support to hlc2asc.
This commit is contained in:
commit
7e732889f0
|
|
@ -573,6 +573,9 @@ class Main:
|
|||
if self.device.startswith('1k'):
|
||||
self.ic = icebox.iceconfig()
|
||||
self.ic.setup_empty_1k()
|
||||
elif self.device.startswith('5k'):
|
||||
self.ic = icebox.iceconfig()
|
||||
self.ic.setup_empty_5k()
|
||||
elif self.device.startswith('8k'):
|
||||
self.ic = icebox.iceconfig()
|
||||
self.ic.setup_empty_8k()
|
||||
|
|
|
|||
Loading…
Reference in New Issue