aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/mrc.h
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-05-01 19:20:44 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-05-01 19:20:44 -0400
commitf0434249150f27d7921a57f70d6af11c12c4e08f (patch)
tree4f1d4e40eb57f729f2533b1acd50c1b8efc903f3 /src/core/hle/mrc.h
parent4ee72869cce3625f25fb516a8980460510df6041 (diff)
renamed hle "mrc" module to "coprocessor"
Diffstat (limited to 'src/core/hle/mrc.h')
-rw-r--r--src/core/hle/mrc.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/core/hle/mrc.h b/src/core/hle/mrc.h
deleted file mode 100644
index d6b9f162..00000000
--- a/src/core/hle/mrc.h
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright 2014 Citra Emulator Project
-// Licensed under GPLv2
-// Refer to the license.txt file included.
-
-#pragma once
-
-#include "common/common_types.h"
-
-namespace HLE {
-
-/// MRC operations (ARM register from coprocessor), decoded as instr[20:27]
-enum ARM11_MRC_OPERATION {
- DATA_SYNCHRONIZATION_BARRIER = 0xE0,
- CALL_GET_THREAD_COMMAND_BUFFER = 0xE1,
-};
-
-/// Call an MRC operation in HLE
-u32 CallMRC(ARM11_MRC_OPERATION operation);
-
-} // namespace