diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-02-16 21:47:43 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-02-16 21:47:43 +0000 |
commit | 28c4f361ac740b4994cda7d1a4a6803cd08be396 (patch) | |
tree | eafa65a4bc57e682b8deabe61c71aac663ca34df | |
parent | 3d57da2a70c0737d388b79f591e86a2821355c92 (diff) |
arm nwfpe support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@611 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | linux-user/qemu.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/linux-user/qemu.h b/linux-user/qemu.h index f6b8d96f44..1a3ad6274a 100644 --- a/linux-user/qemu.h +++ b/linux-user/qemu.h @@ -48,10 +48,21 @@ struct vm86_saved_state { }; #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 aligned too */ typedef struct TaskState { struct TaskState *next; +#ifdef TARGET_ARM + /* FPA state */ + FPA11 fpa; +#endif #ifdef TARGET_I386 struct target_vm86plus_struct *target_v86; struct vm86_saved_state vm86_saved_regs; |