summaryrefslogtreecommitdiff
path: root/src/core/hle/coprocessor.h
diff options
context:
space:
mode:
authorGravatar bunnei2014-09-12 18:34:51 -0400
committerGravatar bunnei2014-10-25 14:11:39 -0400
commit53a22b84da9690865954f666694de885ccb7c286 (patch)
tree77fa8c9fb653173cc78ffd7b0110d695c3fbb772 /src/core/hle/coprocessor.h
parentARM: Reorganized file structure to move shared SkyEye code to a more common a... (diff)
downloadyuzu-53a22b84da9690865954f666694de885ccb7c286.tar.gz
yuzu-53a22b84da9690865954f666694de885ccb7c286.tar.xz
yuzu-53a22b84da9690865954f666694de885ccb7c286.zip
ARM: Integrate SkyEye faster "dyncom" interpreter.
Fixed typo (make protected member public) Added license header back in. I originally removed this because I mostly rewrote the file, but meh ARM: Fixed a type error in dyncom interpreter. ARM: Updated dyncom to use unique_ptr for internal ARM state.
Diffstat (limited to 'src/core/hle/coprocessor.h')
-rw-r--r--src/core/hle/coprocessor.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/core/hle/coprocessor.h b/src/core/hle/coprocessor.h
deleted file mode 100644
index b08d6f3ee..000000000
--- a/src/core/hle/coprocessor.h
+++ /dev/null
@@ -1,20 +0,0 @@
1// Copyright 2014 Citra Emulator Project
2// Licensed under GPLv2
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include "common/common_types.h"
8
9namespace HLE {
10
11/// Coprocessor operations
12enum CoprocessorOperation {
13 DATA_SYNCHRONIZATION_BARRIER = 0xE0,
14 CALL_GET_THREAD_COMMAND_BUFFER = 0xE1,
15};
16
17/// Call an MRC (move to ARM register from coprocessor) instruction in HLE
18s32 CallMRC(u32 instruction);
19
20} // namespace