Make cfg:i not die

This commit is contained in:
wheremyfoodat 2023-09-10 16:20:45 +03:00
parent 0a3ab6a7dc
commit da29cecf7a
3 changed files with 11 additions and 3 deletions

View file

@ -22,7 +22,14 @@ class CFGService {
void secureInfoGetRegion(u32 messagePointer);
public:
enum class Type {
U, // cfg:u
I, // cfg:i
S, // cfg:s
NOR, // cfg:nor
};
CFGService(Memory& mem) : mem(mem) {}
void reset();
void handleSyncRequest(u32 messagePointer);
void handleSyncRequest(u32 messagePointer, Type type);
};