diff options
| author | Camille Mougey <commial@gmail.com> | 2018-09-28 09:17:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-28 09:17:19 +0200 |
| commit | 708209ec59ce820b72c4ce713cb3edf769229302 (patch) | |
| tree | 10e9821c4dd82813f9214d484f30dcc7e65c66ef /miasm2/arch/arm/sem.py | |
| parent | ab7f1f35d80841268760919d1d7a2b60df9b1dce (diff) | |
| parent | 17dc7eb2847265ee0bb196503bb9f92cef58f6ab (diff) | |
| download | miasm-708209ec59ce820b72c4ce713cb3edf769229302.tar.gz miasm-708209ec59ce820b72c4ce713cb3edf769229302.zip | |
Merge pull request #858 from su-vikas/master
In ARM & Aarch64 MSR and MRS instructions' exception wrong names used
Diffstat (limited to 'miasm2/arch/arm/sem.py')
| -rw-r--r-- | miasm2/arch/arm/sem.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/arch/arm/sem.py b/miasm2/arch/arm/sem.py index 7dca6242..2cfc2a17 100644 --- a/miasm2/arch/arm/sem.py +++ b/miasm2/arch/arm/sem.py @@ -525,7 +525,7 @@ def mrs(ir, instr, a, b): out.append(nf) e.append(ExprAff(a, ExprCompose(*out))) else: - raise NotImplementedError("MSR not implemented") + raise NotImplementedError("MRS not implemented") return e, [] def msr(ir, instr, a, b): @@ -536,7 +536,7 @@ def msr(ir, instr, a, b): e.append(ExprAff(cf, b[29:30])) e.append(ExprAff(of, b[28:29])) else: - raise NotImplementedError("MRS not implemented") + raise NotImplementedError("MSR not implemented") return e, [] |