diff options
Diffstat (limited to 'ARMInterpreter_ALU.h')
-rw-r--r-- | ARMInterpreter_ALU.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ARMInterpreter_ALU.h b/ARMInterpreter_ALU.h index 610ffed..224de04 100644 --- a/ARMInterpreter_ALU.h +++ b/ARMInterpreter_ALU.h @@ -72,6 +72,13 @@ A_PROTO_ALU_OP(MOV) A_PROTO_ALU_OP(BIC) A_PROTO_ALU_OP(MVN) +s32 A_MUL(ARM* cpu); +s32 A_MLA(ARM* cpu); +s32 A_UMULL(ARM* cpu); +s32 A_UMLAL(ARM* cpu); +s32 A_SMULL(ARM* cpu); +s32 A_SMLAL(ARM* cpu); + s32 A_CLZ(ARM* cpu); |