aboutsummaryrefslogtreecommitdiff
path: root/py/asmarm.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-06-04 14:00:29 +0000
committerDamien George <damien.p.george@gmail.com>2015-06-04 14:00:29 +0000
commit567b349c2b271c0f04add0f1beb36495835f66f8 (patch)
treeeec69f15a26a3eef7a057c8075f23bb514362d5d /py/asmarm.h
parent4d9cad180dbaf25cdbb9dd0c54a637483db933a7 (diff)
py: Implement native multiply operation in viper emitter.
Diffstat (limited to 'py/asmarm.h')
-rw-r--r--py/asmarm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/asmarm.h b/py/asmarm.h
index 20be84b97..15e7a047b 100644
--- a/py/asmarm.h
+++ b/py/asmarm.h
@@ -101,6 +101,7 @@ void asm_arm_cmp_reg_reg(asm_arm_t *as, uint rd, uint rn);
// arithmetic
void asm_arm_add_reg_reg_reg(asm_arm_t *as, uint rd, uint rn, uint rm);
void asm_arm_sub_reg_reg_reg(asm_arm_t *as, uint rd, uint rn, uint rm);
+void asm_arm_mul_reg_reg_reg(asm_arm_t *as, uint rd, uint rn, uint rm);
void asm_arm_and_reg_reg_reg(asm_arm_t *as, uint rd, uint rn, uint rm);
void asm_arm_eor_reg_reg_reg(asm_arm_t *as, uint rd, uint rn, uint rm);
void asm_arm_orr_reg_reg_reg(asm_arm_t *as, uint rd, uint rn, uint rm);