diff options
Diffstat (limited to 'target-sh4/helper.h')
-rw-r--r-- | target-sh4/helper.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/target-sh4/helper.h b/target-sh4/helper.h index 4d0e269cea..ca6496873e 100644 --- a/target-sh4/helper.h +++ b/target-sh4/helper.h @@ -8,3 +8,11 @@ DEF_HELPER(void, helper_raise_slot_illegal_instruction, (void)) DEF_HELPER(void, helper_debug, (void)) DEF_HELPER(void, helper_sleep, (void)) DEF_HELPER(void, helper_trapa, (uint32_t)) + +DEF_HELPER(uint32_t, helper_addv, (uint32_t, uint32_t)) +DEF_HELPER(uint32_t, helper_addc, (uint32_t, uint32_t)) +DEF_HELPER(uint32_t, helper_subv, (uint32_t, uint32_t)) +DEF_HELPER(uint32_t, helper_subc, (uint32_t, uint32_t)) +DEF_HELPER(uint32_t, helper_negc, (uint32_t)) +DEF_HELPER(void, helper_macl, (uint32_t, uint32_t)) +DEF_HELPER(void, helper_macw, (uint32_t, uint32_t)) |