diff options
author | Paul Burton <paul.burton@imgtec.com> | 2016-06-27 16:19:11 +0100 |
---|---|---|
committer | Leon Alrae <leon.alrae@imgtec.com> | 2016-07-12 09:10:20 +0100 |
commit | a0c8060841f2d56fb3504292c18522b957972e4c (patch) | |
tree | 64a3b96903cd8de04b0ce3f3683d05e1a68d8e64 /target-mips/cpu.h | |
parent | 2d72e7b047d800c9f99262466f65a98684ecca14 (diff) | |
download | qemu-a0c8060841f2d56fb3504292c18522b957972e4c.tar.gz qemu-a0c8060841f2d56fb3504292c18522b957972e4c.tar.bz2 qemu-a0c8060841f2d56fb3504292c18522b957972e4c.zip |
target-mips: support CP0.Config4.AE bit
The read-only Config4.AE bit set denotes extended 10 bits ASID.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
Diffstat (limited to 'target-mips/cpu.h')
-rw-r--r-- | target-mips/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-mips/cpu.h b/target-mips/cpu.h index 3e233ad639..2c4583931c 100644 --- a/target-mips/cpu.h +++ b/target-mips/cpu.h @@ -468,6 +468,7 @@ struct CPUMIPSState { int32_t CP0_Config4_rw_bitmask; #define CP0C4_M 31 #define CP0C4_IE 29 +#define CP0C4_AE 28 #define CP0C4_KScrExist 16 #define CP0C4_MMUExtDef 14 #define CP0C4_FTLBPageSize 8 |