mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
SH4: convert some more arithmetics ops to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5116 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
79383c9c08
commit
6f06939b68
5 changed files with 86 additions and 193 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue