Statistics
| Branch: | Revision:

root / target-mips / mips-defs.h @ 01179c38

History | View | Annotate | Download (638 Bytes)

1
#if !defined (__QEMU_MIPS_DEFS_H__)
2
#define __QEMU_MIPS_DEFS_H__
3

    
4
/* If we want to use host float regs... */
5
//#define USE_HOST_FLOAT_REGS
6

    
7
/* real pages are variable size... */
8
#define TARGET_PAGE_BITS 12
9
/* Uses MIPS R4Kc TLB model */
10
#define MIPS_USES_R4K_TLB
11
#define MIPS_TLB_MAX 128
12

    
13
#ifdef TARGET_MIPS64
14
#define TARGET_LONG_BITS 64
15
#else
16
#define TARGET_LONG_BITS 32
17
#endif
18

    
19
/* Strictly follow the architecture standard:
20
   - Disallow "special" instruction handling for PMON/SPIM.
21
   Note that we still maintain Count/Compare to match the host clock. */
22
//#define MIPS_STRICT_STANDARD 1
23

    
24
#endif /* !defined (__QEMU_MIPS_DEFS_H__) */