diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-10-27 10:30:58 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2015-10-27 10:37:22 +0100 |
| commit | 66093a086ca7582a1d5eca8568cc2b362a075d58 (patch) | |
| tree | 232e433be6ed3bcd06865d3e57adb1c45e4c34aa | |
| parent | c5f26e41cb1f7807337be517d7392c62b43b1a0b (diff) | |
| download | miasm-66093a086ca7582a1d5eca8568cc2b362a075d58.tar.gz miasm-66093a086ca7582a1d5eca8568cc2b362a075d58.zip | |
Mips32: CPR0_112 is EPC (Exception Program Counter)
| -rw-r--r-- | miasm2/arch/mips32/regs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/arch/mips32/regs.py b/miasm2/arch/mips32/regs.py index f92496be..6ddcf25b 100644 --- a/miasm2/arch/mips32/regs.py +++ b/miasm2/arch/mips32/regs.py @@ -43,6 +43,7 @@ cpr0_str[40] = "PAGEMASK" cpr0_str[72] = "COUNT" cpr0_str[80] = "ENTRYHI" cpr0_str[104] = "CAUSE" +cpr0_str[112] = "EPC" cpr0_str[128] = "CONFIG" cpr0_str[152] = "WATCHHI" |