aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/coprocessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/coprocessor.h')
-rw-r--r--src/core/hle/coprocessor.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/core/hle/coprocessor.h b/src/core/hle/coprocessor.h
new file mode 100644
index 00000000..b08d6f3e
--- /dev/null
+++ b/src/core/hle/coprocessor.h
@@ -0,0 +1,20 @@
+// 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 MRC (move to ARM register from coprocessor) instruction in HLE
+s32 CallMRC(u32 instruction);
+
+} // namespace