From ae275b3667d721ee7fc4be4346893e5d2f3e8915 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sun, 24 May 2020 19:49:30 +0100 Subject: [PATCH] add MFMSR and MTMSRD enums to Function --- 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 1895bce8..d8a78e99 100644 --- a/src/soc/decoder/power_enums.py +++ b/src/soc/decoder/power_enums.py @@ -161,6 +161,8 @@ class InternalOp(Enum): OP_SIM_CONFIG = 68 OP_CROP = 69 OP_RFID = 70 + OP_MFMSR = 71 + OP_MTMSRD = 72 @unique -- 2.30.2