diff options
author | bunnei <bunneidev@gmail.com> | 2015-05-16 17:16:29 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-05-16 17:16:29 +0200 |
commit | 9fb9750411e57b621ac1c5d81306b694703d8842 (patch) | |
tree | edd58744ef1f20e4df8539045c057855c8079b5b /src/core/hle | |
parent | Merge pull request #778 from purpasmart96/apt_assert_fix (diff) | |
parent | Delete unused hle/coprocessor.cpp (diff) | |
download | yuzu-9fb9750411e57b621ac1c5d81306b694703d8842.tar yuzu-9fb9750411e57b621ac1c5d81306b694703d8842.tar.gz yuzu-9fb9750411e57b621ac1c5d81306b694703d8842.tar.bz2 yuzu-9fb9750411e57b621ac1c5d81306b694703d8842.tar.lz yuzu-9fb9750411e57b621ac1c5d81306b694703d8842.tar.xz yuzu-9fb9750411e57b621ac1c5d81306b694703d8842.tar.zst yuzu-9fb9750411e57b621ac1c5d81306b694703d8842.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/coprocessor.cpp | 33 |
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 |