mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-28 22:10:33 +00:00
e1571908a2
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5505 c046a42c-6fe2-441c-8c8c-71466251a162
10 lines
274 B
C
10 lines
274 B
C
#ifndef DEF_HELPER
|
|
#define DEF_HELPER(ret, name, params) ret name params;
|
|
#endif
|
|
|
|
DEF_HELPER(uint32_t, helper_fcmpo, (void))
|
|
DEF_HELPER(uint32_t, helper_fcmpu, (void))
|
|
|
|
DEF_HELPER(uint32_t, helper_load_cr, (void))
|
|
DEF_HELPER(void, helper_store_cr, (target_ulong, uint32_t))
|