mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-03 12:27:21 +12:00
[Kernel/APT] Stub some APT and threading stuff to make OoT go further
This commit is contained in:
parent
df4cd0642d
commit
cd13ba6271
7 changed files with 44 additions and 2 deletions
|
@ -103,11 +103,13 @@ class Kernel {
|
|||
void getResourceLimitCurrentValues();
|
||||
void getSystemTick();
|
||||
void getThreadID();
|
||||
void releaseMutex();
|
||||
void sendSyncRequest();
|
||||
void svcCloseHandle();
|
||||
void connectToPort();
|
||||
void outputDebugString();
|
||||
void waitSynchronization1();
|
||||
void waitSynchronizationN();
|
||||
|
||||
// File operations
|
||||
void handleFileOperation(u32 messagePointer, Handle file);
|
||||
|
|
|
@ -12,6 +12,8 @@ class APTService {
|
|||
// Service commands
|
||||
void getLockHandle(u32 messagePointer);
|
||||
void checkNew3DS(u32 messagePointer);
|
||||
void enable(u32 messagePointer);
|
||||
void notifyToWait(u32 messagePointer);
|
||||
|
||||
public:
|
||||
APTService(Memory& mem) : mem(mem) {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue