Does not quite fully work yet...

This commit is contained in:
2026-05-25 12:21:43 +02:00
parent 72253d9d6a
commit 76475271d1
8 changed files with 215 additions and 85 deletions
+1 -6
View File
@@ -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;