From: Luke Kenneth Casson Leighton Date: Tue, 15 Sep 2020 09:58:34 +0000 (+0100) Subject: add MMU FunctionUnit X-Git-Tag: semi_working_ecp5~36 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=50b38a5db472528716247bf4d1be8cc88e0e3141;p=soc.git add MMU FunctionUnit --- diff --git a/src/soc/decoder/power_enums.py b/src/soc/decoder/power_enums.py index bc7d8248..74320365 100644 --- a/src/soc/decoder/power_enums.py +++ b/src/soc/decoder/power_enums.py @@ -58,6 +58,7 @@ class Function(Enum): MUL = 1 << 8 DIV = 1 << 9 SPR = 1 << 10 + MMU = 1 << 11 @unique