mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-29 21:12:07 -06:00
Fix enough FPU/R2 support to get 24Kf going.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2528 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
51789c410b
commit
e397ee3382
5 changed files with 66 additions and 26 deletions
|
@ -56,10 +56,15 @@ void do_restore_state (void *pc_ptr)
|
|||
cpu_restore_state (tb, env, pc, NULL);
|
||||
}
|
||||
|
||||
void do_raise_exception_direct (uint32_t exception)
|
||||
void do_raise_exception_direct_err (uint32_t exception, int error_code)
|
||||
{
|
||||
do_restore_state (GETPC ());
|
||||
do_raise_exception_err (exception, 0);
|
||||
do_raise_exception_err (exception, error_code);
|
||||
}
|
||||
|
||||
void do_raise_exception_direct (uint32_t exception)
|
||||
{
|
||||
do_raise_exception_direct_err (exception, 0);
|
||||
}
|
||||
|
||||
#define MEMSUFFIX _raw
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue