summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorarchshift <gh@archshift.com>2015-05-16 08:24:11 +0200
committerarchshift <gh@archshift.com>2015-05-16 08:24:11 +0200
commit4b300ba763320565340f68e7c720b2e1eb37862e (patch)
treea29e527dfa4748051120cfd62babff80ccc2ef91 /src
parentMerge pull request #758 from yuriks/sync-logging (diff)
downloadyuzu-4b300ba763320565340f68e7c720b2e1eb37862e.tar
yuzu-4b300ba763320565340f68e7c720b2e1eb37862e.tar.gz
yuzu-4b300ba763320565340f68e7c720b2e1eb37862e.tar.bz2
yuzu-4b300ba763320565340f68e7c720b2e1eb37862e.tar.lz
yuzu-4b300ba763320565340f68e7c720b2e1eb37862e.tar.xz
yuzu-4b300ba763320565340f68e7c720b2e1eb37862e.tar.zst
yuzu-4b300ba763320565340f68e7c720b2e1eb37862e.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/coprocessor.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/core/hle/coprocessor.cpp b/src/core/hle/coprocessor.cpp
deleted file mode 100644
index 425959be4..000000000
--- a/src/core/hle/coprocessor.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright 2014 Citra Emulator Project
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#include "core/hle/coprocessor.h"
-#include "core/hle/hle.h"
-#include "core/mem_map.h"
-
-namespace HLE {
-
-/// Returns the coprocessor (in this case, syscore) command buffer pointer
-Addr GetThreadCommandBuffer() {
- // Called on insruction: mrc p15, 0, r0, c13, c0, 3
- return Memory::KERNEL_MEMORY_VADDR;
-}
-
-/// Call an MRC (move to ARM register from coprocessor) instruction in HLE
-s32 CallMRC(u32 instruction) {
- CoprocessorOperation operation = (CoprocessorOperation)((instruction >> 20) & 0xFF);
-
- switch (operation) {
-
- case CALL_GET_THREAD_COMMAND_BUFFER:
- return GetThreadCommandBuffer();
-
- default:
- DEBUG_LOG(OSHLE, "unknown MRC call 0x%08X", instruction);
- break;
- }
- return -1;
-}
-
-} // namespace