diff options
author | bunnei <bunneidev@gmail.com> | 2014-09-13 00:34:51 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-10-25 20:11:39 +0200 |
commit | 53a22b84da9690865954f666694de885ccb7c286 (patch) | |
tree | 77fa8c9fb653173cc78ffd7b0110d695c3fbb772 /src/core/hle | |
parent | ARM: Reorganized file structure to move shared SkyEye code to a more common area. (diff) | |
download | yuzu-53a22b84da9690865954f666694de885ccb7c286.tar yuzu-53a22b84da9690865954f666694de885ccb7c286.tar.gz yuzu-53a22b84da9690865954f666694de885ccb7c286.tar.bz2 yuzu-53a22b84da9690865954f666694de885ccb7c286.tar.lz yuzu-53a22b84da9690865954f666694de885ccb7c286.tar.xz yuzu-53a22b84da9690865954f666694de885ccb7c286.tar.zst yuzu-53a22b84da9690865954f666694de885ccb7c286.zip |
Diffstat (limited to '')
-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 @@ -// Copyright 2014 Citra Emulator Project -// Licensed under GPLv2 -// Refer to the license.txt file included. - -#pragma once - -#include "common/common_types.h" - -namespace HLE { - -/// Coprocessor operations -enum CoprocessorOperation { - DATA_SYNCHRONIZATION_BARRIER = 0xE0, - CALL_GET_THREAD_COMMAND_BUFFER = 0xE1, -}; - -/// Call an MRC (move to ARM register from coprocessor) instruction in HLE -s32 CallMRC(u32 instruction); - -} // namespace |