diff options
Diffstat (limited to 'src/core/hle/hle.h')
-rw-r--r-- | src/core/hle/hle.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h index 5ee90bcdc..d02948be3 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); |