aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/coprocessor.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-05-08 17:16:35 -0400
committerbunnei <bunneidev@gmail.com>2014-05-08 17:16:35 -0400
commitbdc54d0d4897841a4d24aee80311bfb1f0eba884 (patch)
tree558d87c83fe8f7e8e3e57644407c872244ee5a3a /src/core/hle/coprocessor.h
parentd4bf68b6503129fc32639c2fdbe98df8d5855d66 (diff)
parentb39cd3a64c69792ffd720ffa6e0f5fe35740a087 (diff)
Merge pull request #15 from bunnei/hle-services
Various fixes/improvements to HLE of 3DS services, mostly cleans up GSP call decoding
Diffstat (limited to 'src/core/hle/coprocessor.h')
-rw-r--r--src/core/hle/coprocessor.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core/hle/coprocessor.h b/src/core/hle/coprocessor.h
new file mode 100644
index 000000000..03822af13
--- /dev/null
+++ b/src/core/hle/coprocessor.h
@@ -0,0 +1,23 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "common/common_types.h"
+
+namespace HLE {
+
+/// Coprocessor operations
+enum CoprocessorOperation {
+ DATA_SYNCHRONIZATION_BARRIER = 0xE0,
+ CALL_GET_THREAD_COMMAND_BUFFER = 0xE1,
+};
+
+/// Call an MCR (move to coprocessor from ARM register) instruction in HLE
+s32 CallMCR(u32 instruction, u32 value);
+
+/// Call an MRC (move to ARM register from coprocessor) instruction in HLE
+s32 CallMRC(u32 instruction);
+
+} // namespace