aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/hle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/hle.h')
-rw-r--r--src/core/hle/hle.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h
index 5ee90bcd..d02948be 100644
--- a/src/core/hle/hle.h
+++ b/src/core/hle/hle.h
@@ -46,6 +46,12 @@ inline void Read(T &var, const u32 addr);
template <typename T>
inline void Write(u32 addr, const T data);
+u8* GetPointer(const u32 Address);
+
+inline const char* GetCharPointer(const u32 address) {
+ return (const char *)GetPointer(address);
+}
+
void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table);
void CallSyscall(u32 opcode);