Add Y2R event delay

This commit is contained in:
wheremyfoodat 2024-07-02 15:30:38 +03:00
parent 29d9ed7224
commit 1c9a3ac3d3
7 changed files with 40 additions and 8 deletions

View file

@ -15,6 +15,7 @@
#include "services/service_manager.hpp"
class CPU;
struct Scheduler;
class Kernel {
std::span<u32, 16> regs;
@ -243,6 +244,7 @@ public:
}
ServiceManager& getServiceManager() { return serviceManager; }
Scheduler& getScheduler();
void sendGPUInterrupt(GPUInterrupt type) { serviceManager.sendGPUInterrupt(type); }
void clearInstructionCache();