Merge branch 'metal' into metal

This commit is contained in:
SamoZ256 2024-07-02 17:44:32 +02:00 committed by GitHub
commit 124622cf18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 93 additions and 11 deletions

View file

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