summaryrefslogtreecommitdiff
path: root/src/core/hle/syscall.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-05-15 20:17:30 -0400
committerGravatar bunnei2014-05-15 20:17:30 -0400
commit4fba4f36bf20c2721e2602c450eafcc1117ac643 (patch)
treeed44db9fd187dde4d1b3648ce87dace024b86a0e /src/core/hle/syscall.cpp
parentadded memory mapped region for system mem - sdk demos load a segment here on ... (diff)
downloadyuzu-4fba4f36bf20c2721e2602c450eafcc1117ac643.tar.gz
yuzu-4fba4f36bf20c2721e2602c450eafcc1117ac643.tar.xz
yuzu-4fba4f36bf20c2721e2602c450eafcc1117ac643.zip
- added SVC stubs for QueryMemory and GetThreadId
- added SVC structs MemoryInfo and PageInfo
Diffstat (limited to 'src/core/hle/syscall.cpp')
-rw-r--r--src/core/hle/syscall.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/core/hle/syscall.cpp b/src/core/hle/syscall.cpp
index 0700d9e82..0765bce7a 100644
--- a/src/core/hle/syscall.cpp
+++ b/src/core/hle/syscall.cpp
@@ -169,10 +169,22 @@ Result ReleaseMutex(Handle handle) {
169 return 0; 169 return 0;
170} 170}
171 171
172Result GetThreadId(void* thread_id, u32 thread) {
173 DEBUG_LOG(SVC, "(UNIMPLEMENTED) GetThreadId called thread=0x%08X", thread);
174 return 0;
175}
176
177Result QueryMemory(void *_info, void *_out, u32 addr) {
178 MemoryInfo* info = (MemoryInfo*) _info;
179 PageInfo* out = (PageInfo*) _out;
180 DEBUG_LOG(SVC, "(UNIMPLEMENTED) QueryMemory called addr=0x%08X", addr);
181 return 0;
182}
183
172const HLE::FunctionDef Syscall_Table[] = { 184const HLE::FunctionDef Syscall_Table[] = {
173 {0x00, NULL, "Unknown"}, 185 {0x00, NULL, "Unknown"},
174 {0x01, WrapI_VUUUUU<ControlMemory>, "ControlMemory"}, 186 {0x01, WrapI_VUUUUU<ControlMemory>, "ControlMemory"},
175 {0x02, NULL, "QueryMemory"}, 187 {0x02, WrapI_VVU<QueryMemory>, "QueryMemory"},
176 {0x03, NULL, "ExitProcess"}, 188 {0x03, NULL, "ExitProcess"},
177 {0x04, NULL, "GetProcessAffinityMask"}, 189 {0x04, NULL, "GetProcessAffinityMask"},
178 {0x05, NULL, "SetProcessAffinityMask"}, 190 {0x05, NULL, "SetProcessAffinityMask"},
@@ -225,7 +237,7 @@ const HLE::FunctionDef Syscall_Table[] = {
225 {0x34, NULL, "OpenThread"}, 237 {0x34, NULL, "OpenThread"},
226 {0x35, NULL, "GetProcessId"}, 238 {0x35, NULL, "GetProcessId"},
227 {0x36, NULL, "GetProcessIdOfThread"}, 239 {0x36, NULL, "GetProcessIdOfThread"},
228 {0x37, NULL, "GetThreadId"}, 240 {0x37, WrapI_VU<GetThreadId>, "GetThreadId"},
229 {0x38, WrapI_VU<GetResourceLimit>, "GetResourceLimit"}, 241 {0x38, WrapI_VU<GetResourceLimit>, "GetResourceLimit"},
230 {0x39, NULL, "GetResourceLimitLimitValues"}, 242 {0x39, NULL, "GetResourceLimitLimitValues"},
231 {0x3A, WrapI_VUVI<GetResourceLimitCurrentValues>, "GetResourceLimitCurrentValues"}, 243 {0x3A, WrapI_VUVI<GetResourceLimitCurrentValues>, "GetResourceLimitCurrentValues"},