Cached interpreter plays Mario 64. Start looking into RSP as well

This commit is contained in:
2026-05-22 16:46:29 +02:00
parent c9a0307878
commit 4f42a673a3
23 changed files with 1161 additions and 845 deletions
+2 -6
View File
@@ -27,13 +27,9 @@ u64 Scheduler::Remove(const EventType eventType) const {
return ret;
}
void Scheduler::SkipToNext() {
ticks = events.top().time;
}
void Scheduler::SkipToNext() { ticks = events.top().time; }
void Scheduler::Tick(const u64 t) {
ticks += t;
}
void Scheduler::Tick(const u64 t) { ticks += t; }
void Scheduler::HandleEvents() {
n64::Mem &mem = n64::Core::GetMem();