From 34cfb7fdb5f6e7647c78ff45b914723256a9c417 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 12 Mar 2021 21:41:57 +0000 Subject: [PATCH] add ability to set and distinguish RT=0 (RT_OR_ZERO) to OutSel enum --- src/soc/decoder/power_enums.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/soc/decoder/power_enums.py b/src/soc/decoder/power_enums.py index 1254534d..a823295c 100644 --- a/src/soc/decoder/power_enums.py +++ b/src/soc/decoder/power_enums.py @@ -352,6 +352,7 @@ class OutSel(Enum): RT = 1 RA = 2 SPR = 3 + RT_OR_ZERO = 4 @unique -- 2.30.2