From 68e198476f17a026fed88f3c9a271aa768694354 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sat, 12 Apr 2014 21:55:36 -0400 Subject: - added HLE to connect to "srv:" service - added a manager for keeping track of services/ports - added a memory mapped region for memory accessed by HLE - added HLE for GetThreadCommandBuffer function --- src/core/hle/hle.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/core/hle/hle.h') diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h index 9466be540..2bd1f99a2 100644 --- a/src/core/hle/hle.h +++ b/src/core/hle/hle.h @@ -16,6 +16,11 @@ namespace HLE { +enum { + OS_THREAD_COMMAND_BUFFER_ADDR = 0xA0004000, +}; + +typedef u32 Addr; typedef void (*Func)(); struct FunctionDef { @@ -34,6 +39,8 @@ void RegisterModule(std::string name, int num_functions, const FunctionDef *func void CallSyscall(u32 opcode); +Addr CallGetThreadCommandBuffer(); + void Init(); void Shutdown(); -- cgit v1.2.3