icebox_hlc2asc: Accept device types such as HX1K

This commit is contained in:
Joel Holdsworth 2018-05-02 16:33:16 +01:00 committed by Tim 'mithro' Ansell
parent 92751d505a
commit 6c21817732
1 changed files with 3 additions and 1 deletions

View File

@ -532,7 +532,9 @@ class Main:
and len(fields[1]) >= 2 and fields[1][0] == '"' \
and fields[1][-1] == '"' \
and self.ic is None and self.device is None:
self.device = fields[1][1:-1]
self.device = fields[1][1:-1].lower()
if self.device.startswith('lp') or self.device.startswith('hx'):
self.device = self.device[2:]
if self.device == '1k':
self.ic = icebox.iceconfig()
self.ic.setup_empty_1k()