From 474b576b3e7e0ddaafd60abc99b0b2bf80d637df Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Sun, 20 Oct 2024 23:44:55 +0300 Subject: [PATCH] fix(rom): fails to build on ihp shuttles Add "i", "h", "p" to the 7-segment encoding dictionary. --- rom.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rom.py b/rom.py index 5967745..21d7707 100644 --- a/rom.py +++ b/rom.py @@ -34,7 +34,10 @@ "E": 0b01111001, "F": 0b01110001, "f": 0b01110001, + "h": 0b01110100, + "i": 0b00010000, "o": 0b01011100, + "p": 0b01110011, "t": 0b01111000, }