diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-22 20:50:42 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-22 20:50:42 +0000 |
commit | 3b1c8be4f4f1b5d4114320aaf41ec4872ab4598c (patch) | |
tree | 688f8bb16adc69fe1549605db772d44eb7c0ebeb /target-mips/cpu.h | |
parent | c281868e2675efc737fd99961ab083456bcdab35 (diff) |
Fix PageMask handling, second part.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2345 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/cpu.h')
-rw-r--r-- | target-mips/cpu.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/target-mips/cpu.h b/target-mips/cpu.h index c1b13d902d..c1001c7fce 100644 --- a/target-mips/cpu.h +++ b/target-mips/cpu.h @@ -44,8 +44,7 @@ union fpr_t { typedef struct tlb_t tlb_t; struct tlb_t { target_ulong VPN; - target_ulong end; - target_ulong end2; + uint_fast32_t PageMask; uint_fast8_t ASID; uint_fast16_t G:1; uint_fast16_t C0:3; |