From 6c21817732f251f297f7fc8c0876e7cfe78284ca Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Wed, 2 May 2018 16:33:16 +0100 Subject: icebox_hlc2asc: Accept device types such as HX1K --- icebox/icebox_hlc2asc.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/icebox/icebox_hlc2asc.py b/icebox/icebox_hlc2asc.py index 54c9dc0..3888dd3 100755 --- a/icebox/icebox_hlc2asc.py +++ b/icebox/icebox_hlc2asc.py @@ -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() -- cgit v1.2.3