From: notaz Date: Sun, 23 Jan 2011 22:34:28 +0000 (+0200) Subject: drc: don't leave until we really need to X-Git-Tag: r5~18 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=commitdiff_plain;h=e4eb18c1d2acc12f429723a3a65687eb2dc7eefb drc: don't leave until we really need to --- diff --git a/libpcsxcore/new_dynarec/emu_if.c b/libpcsxcore/new_dynarec/emu_if.c index 572c4826..a37f7a27 100644 --- a/libpcsxcore/new_dynarec/emu_if.c +++ b/libpcsxcore/new_dynarec/emu_if.c @@ -175,7 +175,9 @@ static void ari64_reset() pending_exception = 1; } -static void ari64_execute() +// execute until predefined leave points +// (HLE softcall exit and BIOS fastboot end) +static void ari64_execute_until() { schedule_timeslice(); @@ -188,6 +190,14 @@ static void ari64_execute() psxRegs.cycle, next_interupt, next_interupt - psxRegs.cycle); } +static void ari64_execute() +{ + while (!stop) { + ari64_execute_until(); + evprintf("drc left @%08x\n", psxRegs.pc); + } +} + static void ari64_clear(u32 addr, u32 size) { u32 start, end; @@ -229,7 +239,7 @@ R3000Acpu psxRec = { ari64_reset, #if defined(__arm__) ari64_execute, - ari64_execute, + ari64_execute_until, #else intExecuteT, intExecuteBlockT,