mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-09 08:17:53 -06:00
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
This commit is contained in:
parent
7f27bae69d
commit
c0009975ca
1 changed files with 15 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue