arm nwfpe support

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@611 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2004-02-16 21:47:43 +00:00
parent 3d57da2a70
commit 28c4f361ac
1 changed files with 11 additions and 0 deletions

View File

@ -48,10 +48,21 @@ struct vm86_saved_state {
}; };
#endif #endif
#ifdef TARGET_ARM
/* FPU emulator */
#include "nwfpe/fpa11.h"
#undef put_user
#undef get_user
#endif
/* NOTE: we force a big alignment so that the stack stored after is /* NOTE: we force a big alignment so that the stack stored after is
aligned too */ aligned too */
typedef struct TaskState { typedef struct TaskState {
struct TaskState *next; struct TaskState *next;
#ifdef TARGET_ARM
/* FPA state */
FPA11 fpa;
#endif
#ifdef TARGET_I386 #ifdef TARGET_I386
struct target_vm86plus_struct *target_v86; struct target_vm86plus_struct *target_v86;
struct vm86_saved_state vm86_saved_regs; struct vm86_saved_state vm86_saved_regs;