From: ths Date: Sun, 19 Aug 2007 21:43:54 +0000 (+0000) Subject: Darwin-user: Compile fix for ppc targets, by Pierre d'Herbemont. X-Git-Tag: release_0_9_1~774 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=c0009975ca00b279071973ab22ff9798fee650ab;p=qemu.git Darwin-user: Compile fix for ppc targets, by Pierre d'Herbemont. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3123 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/darwin-user/main.c b/darwin-user/main.c index 78cf864c1..fd62fc1b8 100644 --- a/darwin-user/main.c +++ b/darwin-user/main.c @@ -150,6 +150,21 @@ void cpu_ppc_store_decr (CPUState *env, uint32_t value) /* TO FIX */ } +void cpu_ppc601_store_rtcu (CPUState *env, uint32_t value) +{ + cpu_ppc_store_tbu( env, value ); +} + +uint32_t cpu_ppc601_load_rtcu (CPUState *env) +{ + cpu_ppc_load_tbu(env); +} + +uint32_t cpu_ppc601_load_rtcl (CPUState *env) +{ + return cpu_ppc_load_tbl(env) & 0x3FFFFF80; +} + void cpu_loop(CPUPPCState *env) { int trapnr;