mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-12-25 02:29:49 +00:00
Clean-ups: comments, ticks per sec output, don't restore r13 twice.
This commit is contained in:
parent
38d03d02e9
commit
7ac6ad2f46
@ -257,8 +257,8 @@ static void build_sigregs(sigregs *srp, machine_regs *mrp)
|
||||
|
||||
// Global variables (exported)
|
||||
#if !EMULATED_PPC
|
||||
void *TOC = NULL; // Pointer to Thread Local Storage (r2)
|
||||
void *R13 = NULL; // Pointer to .sdata section (r13 under Linux)
|
||||
void *TOC = NULL; // Pointer to Thread Local Storage (r2)
|
||||
void *R13 = NULL; // Pointer to .sdata section (r13 under Linux)
|
||||
#endif
|
||||
uint32 RAMBase; // Base address of Mac RAM
|
||||
uint32 RAMSize; // Size of Mac RAM
|
||||
@ -1389,7 +1389,7 @@ static void *tick_func(void *arg)
|
||||
}
|
||||
|
||||
uint64 end = GetTicks_usec();
|
||||
D(bug("%Ld ticks in %Ld usec = %f ticks/sec\n", ticks, end - start, ticks * 1000000.0 / (end - start)));
|
||||
D(bug("%lld ticks in %lld usec = %f ticks/sec\n", ticks, end - start, ticks * 1000000.0 / (end - start)));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -245,7 +245,6 @@ C_SYMBOL_NAME(jump_to_rom):
|
||||
// Restore PowerPC registers
|
||||
lwz r1,XLM_EMUL_RETURN_STACK(0)
|
||||
RESTORE_SYSTEM_R2
|
||||
RESTORE_SYSTEM_R13
|
||||
lmw r13,20(r1)
|
||||
lfd f14,20+19*4+0*8(r1)
|
||||
lfd f15,20+19*4+1*8(r1)
|
||||
|
Loading…
Reference in New Issue
Block a user