From a60febdeb1c572a4b85b410c6519383fc581732d Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Wed, 20 May 2020 01:23:00 +0100 Subject: [PATCH 1/1] add DIV and MUL to POWER Function enum --- src/soc/decoder/power_enums.py | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.30.2