diff options
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/coprocessor.h | 20 |
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 | |||
| 9 | namespace HLE { | ||
| 10 | |||
| 11 | /// Coprocessor operations | ||
| 12 | enum 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 | ||
| 18 | s32 CallMRC(u32 instruction); | ||
| 19 | |||
| 20 | } // namespace | ||