about summary refs log tree commit diff stats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--miasm/arch/arm/sem.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm/arch/arm/sem.py b/miasm/arch/arm/sem.py
index ae687c6d..5eedd2db 100644
--- a/miasm/arch/arm/sem.py
+++ b/miasm/arch/arm/sem.py
@@ -1454,7 +1454,7 @@ def pkhtb(ir, instr, arg1, arg2, arg3):
     )
     return e, []
 
-def mcr(ir, insr, arg1, arg2, arg3, arg4, arg5, arg6):
+def mrc(ir, insr, arg1, arg2, arg3, arg4, arg5, arg6):
     e = []
     sreg = (str(arg1), int(arg2), str(arg4), str(arg5), int(arg6))
     if sreg in coproc_reg_dict:
@@ -1464,7 +1464,7 @@ def mcr(ir, insr, arg1, arg2, arg3, arg4, arg5, arg6):
 
     return e, []
 
-def mrc(ir, insr, arg1, arg2, arg3, arg4, arg5, arg6):
+def mcr(ir, insr, arg1, arg2, arg3, arg4, arg5, arg6):
     e = []
     sreg = (str(arg1), int(arg2), str(arg4), str(arg5), int(arg6))
     if sreg in coproc_reg_dict: