From: Luke Kenneth Casson Leighton Date: Sat, 4 Apr 2020 13:25:37 +0000 (+0100) Subject: add SelectableInt and selectconcat to imports X-Git-Tag: div_pipeline~1533 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=974b86810ca449b84ef7aa202fa4fdc0c85fc607;p=soc.git add SelectableInt and selectconcat to imports --- diff --git a/src/soc/decoder/pseudo/pywriter.py b/src/soc/decoder/pseudo/pywriter.py index 88746e28..238ef646 100644 --- a/src/soc/decoder/pseudo/pywriter.py +++ b/src/soc/decoder/pseudo/pywriter.py @@ -23,6 +23,8 @@ header = """\ from soc.decoder.isa import ISACaller from soc.decoder.helpers import (EXTS64, EXTZ64, ROTL64, ROTL32, MASK,) +from soc.decoder.selectable_int import SelectableInt +from soc.decoder.selectable_int import selectconcat as concat class %s(ISACaller):