From: Luke Kenneth Casson Leighton Date: Wed, 20 May 2020 00:23:00 +0000 (+0100) Subject: add DIV and MUL to POWER Function enum X-Git-Tag: div_pipeline~1055 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a60febdeb1c572a4b85b410c6519383fc581732d;hp=508948f55c598a86c2fc401ef49f5c08da22c1f5;p=soc.git add DIV and MUL to POWER Function enum --- diff --git a/src/soc/decoder/power_enums.py b/src/soc/decoder/power_enums.py index 690bf129..1b8395cc 100644 --- a/src/soc/decoder/power_enums.py +++ b/src/soc/decoder/power_enums.py @@ -52,6 +52,8 @@ class Function(Enum): BRANCH = 5 CR = 6 TRAP = 7 + MUL = 8 + DIV = 9 @unique