Does not quite fully work yet...
This commit is contained in:
@@ -64,7 +64,7 @@ void Core::LoadROM(const std::string &rom_) {
|
||||
|
||||
u32 Core::StepCPU() {
|
||||
if (cpuType == Interpreted)
|
||||
return interpreter.Step() + regs.PopStalledCycles();
|
||||
return interpreter.ExecuteCached() + regs.PopStalledCycles();
|
||||
|
||||
#ifdef KAIZEN_JIT_ENABLED
|
||||
if (cpuType == DynamicRecompiler)
|
||||
@@ -96,11 +96,6 @@ void Core::StepRSP(const u32 cpuCycles) {
|
||||
}
|
||||
}
|
||||
|
||||
void Core::MaybeIdleSkip() {
|
||||
if (GetRegs().nextPC == GetRegs().pc)
|
||||
Scheduler::GetInstance().SkipToNext();
|
||||
}
|
||||
|
||||
void Core::Run(const float volumeL, const float volumeR) {
|
||||
MMIO &mmio = mem->mmio;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user