diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-30 16:22:56 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-30 16:22:56 +0000 |
commit | 0f3955e2d28d71bc18935913e0bc2c5d134b1568 (patch) | |
tree | 47a019856ad6758c58c1fcbed74f0d72b93d42f4 /target-ppc/op.c | |
parent | 4bf5801db44a1bb13e80b35bb0ea7aeed9780050 (diff) |
target-ppc: convert software TLB instructions to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5819 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/op.c')
-rw-r--r-- | target-ppc/op.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/target-ppc/op.c b/target-ppc/op.c index 5d2cfa1450..618bd3aa94 100644 --- a/target-ppc/op.c +++ b/target-ppc/op.c @@ -378,34 +378,6 @@ void OPPROTO op_slbie_64 (void) #endif #endif -#if !defined(CONFIG_USER_ONLY) -/* PowerPC 602/603/755 software TLB load instructions */ -void OPPROTO op_6xx_tlbld (void) -{ - do_load_6xx_tlb(0); - RETURN(); -} - -void OPPROTO op_6xx_tlbli (void) -{ - do_load_6xx_tlb(1); - RETURN(); -} - -/* PowerPC 74xx software TLB load instructions */ -void OPPROTO op_74xx_tlbld (void) -{ - do_load_74xx_tlb(0); - RETURN(); -} - -void OPPROTO op_74xx_tlbli (void) -{ - do_load_74xx_tlb(1); - RETURN(); -} -#endif - /* 601 specific */ void OPPROTO op_load_601_rtcl (void) { |