diff options
author | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-01 05:16:57 +0000 |
---|---|---|
committer | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-01 05:16:57 +0000 |
commit | 7dbe11acd807b7a1566b2fe665333a49f8358de0 (patch) | |
tree | b0c9681451bcb1d5631c564e8a5d6b9bd56bb725 /target-ppc/op_helper.h | |
parent | 578bb25230229307c0b6ff62ae03ac0fbda27b18 (diff) |
Handle all MMU models in switches, even if it's just to abort because of lack
of supporting code.
Implement 74xx software TLB model.
Keep 74xx with software TLB disabled, as Linux is not able to handle TLB miss
on those processors.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3307 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/op_helper.h')
-rw-r--r-- | target-ppc/op_helper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-ppc/op_helper.h b/target-ppc/op_helper.h index 6f79cad912..0406682c76 100644 --- a/target-ppc/op_helper.h +++ b/target-ppc/op_helper.h @@ -135,6 +135,7 @@ void do_rfid (void); void do_hrfid (void); #endif void do_load_6xx_tlb (int is_code); +void do_load_74xx_tlb (int is_code); #endif /* POWER / PowerPC 601 specific helpers */ |