mirror of https://github.com/YosysHQ/icestorm.git
Add 5k support to hlc2asc.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
parent
8cac6c5840
commit
497028cf5a
|
|
@ -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