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
include/services

View file

@ -101,8 +101,12 @@ class Y2RService {
void startConversion(u32 messagePointer);
void stopConversion(u32 messagePointer);
public:
bool isBusy;
public:
Y2RService(Memory& mem, Kernel& kernel) : mem(mem), kernel(kernel) {}
void reset();
void handleSyncRequest(u32 messagePointer);
void signalConversionDone();
};