aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/hle.h
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-04-16 20:41:33 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-04-16 20:41:33 -0400
commitde3dcd38f6572da88a67e625e6aa98c2a2f786d7 (patch)
treea829306a3e12733409e549fa7223a232364ac418 /src/core/hle/hle.h
parent32c3462047d814eada8f3b80ee5ea2cd03936ae0 (diff)
- fixed tabs in function_wrappers.h
- fixed log message wording in hle.cpp - added syscall stubs for CloseHandle and WaitSynchronization1
Diffstat (limited to 'src/core/hle/hle.h')
-rw-r--r--src/core/hle/hle.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h
index d02948be..628a1da8 100644
--- a/src/core/hle/hle.h
+++ b/src/core/hle/hle.h
@@ -10,6 +10,7 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
#define PARAM(n) Core::g_app_core->GetReg(n)
+#define PARAM64(n) (Core::g_app_core->GetReg(n) | ((u64)Core::g_app_core->GetReg(n + 1) << 32))
#define RETURN(n) Core::g_app_core->SetReg(0, n)
////////////////////////////////////////////////////////////////////////////////////////////////////