PPU: HACK instruction removed

Breakpoints fixed
This commit is contained in:
Nekotekina 2017-03-22 23:23:47 +03:00
parent ddd6ebc58d
commit 3bfe17a14f
20 changed files with 155 additions and 379 deletions

View file

@ -6,6 +6,7 @@
#include "ARMv7Thread.h"
#include "ARMv7Opcodes.h"
#include "ARMv7Interpreter.h"
#include "ARMv7Function.h"
#include "Utilities/GSL.h"
@ -122,7 +123,7 @@ void ARMv7Thread::fast_call(u32 addr)
const auto old_func = last_function;
PC = addr;
LR = Emu.GetCPUThreadStop();
LR = arm_function_manager::addr; // TODO
last_function = nullptr;
auto at_ret = gsl::finally([&]()