From: Luke Kenneth Casson Leighton Date: Mon, 6 Jul 2020 13:11:09 +0000 (+0100) Subject: add mtmsr internal op X-Git-Tag: div_pipeline~162^2~35 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7e58dbeb17fdd89c7f0713c51cefafb00e4e175e;p=soc.git add mtmsr internal op --- diff --git a/src/soc/decoder/power_enums.py b/src/soc/decoder/power_enums.py index 8de4191c..fd928baf 100644 --- a/src/soc/decoder/power_enums.py +++ b/src/soc/decoder/power_enums.py @@ -108,7 +108,7 @@ _insns = [ "lhbrx", "lhz", "lhzu", "lhzux", "lhzx", "lwa", "lwarx", "lwaux", "lwax", "lwbrx", "lwz", "lwzu", "lwzux", "lwzx", "mcrf", "mcrxr", "mcrxrx", "mfcr/mfocrf", "mfmsr", "mfspr", "modsd", "modsw", "modud", - "moduw", "mtcrf/mtocrf", "mtmsrd", "mtspr", "mulhd", "mulhdu", + "moduw", "mtcrf/mtocrf", "mtmsr", "mtmsrd", "mtspr", "mulhd", "mulhdu", "mulhw", "mulhwu", "mulld", "mulldo", "mulli", "mullw", "mullwo", "nand", "neg", "nego", "nop", "nor", "or", "orc", "ori", "oris", "popcntb", "popcntd", "popcntw", "prtyd", "prtyw", "rfid", "rldcl", @@ -203,6 +203,7 @@ class InternalOp(Enum): OP_MFMSR = 71 OP_MTMSRD = 72 OP_SC = 73 + OP_MTMSR = 74 @unique