Full implementation of IEEE exceptions (Aurelien Jarno)
[qemu/qemu_0_9_1_stable.git] / target-mips / mips-defs.h
blob8b29e8b2d4dc1e4526e6d56870f23caefc19d59c
1 #if !defined (__QEMU_MIPS_DEFS_H__)
2 #define __QEMU_MIPS_DEFS_H__
4 /* If we want to use 64 bits host regs... */
5 //#define USE_64BITS_REGS
6 /* If we want to use host float regs... */
7 //#define USE_HOST_FLOAT_REGS
9 /* real pages are variable size... */
10 #define TARGET_PAGE_BITS 12
11 /* Uses MIPS R4Kc TLB model */
12 #define MIPS_USES_R4K_TLB
13 #define MIPS_TLB_NB 16
14 #define MIPS_TLB_MAX 128
16 #ifdef TARGET_MIPS64
17 #define TARGET_LONG_BITS 64
18 #else
19 #define TARGET_LONG_BITS 32
20 #endif
22 #endif /* !defined (__QEMU_MIPS_DEFS_H__) */