390af82166
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5118 c046a42c-6fe2-441c-8c8c-71466251a162
21 lines
787 B
C
21 lines
787 B
C
#ifndef DEF_HELPER
|
|
#define DEF_HELPER(ret, name, params) ret name params;
|
|
#endif
|
|
|
|
DEF_HELPER(void, helper_ldtlb, (void))
|
|
DEF_HELPER(void, helper_raise_illegal_instruction, (void))
|
|
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))
|
|
|
|
DEF_HELPER(void, helper_ld_fpscr, (uint32_t))
|