diff options
author | bunnei <bunneidev@gmail.com> | 2014-10-25 20:35:31 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-10-25 20:35:31 +0200 |
commit | 4615c73d15f6f27c5e275c57dcafcb56355b9c2d (patch) | |
tree | e11104887d1a680e3aa33bddc4ad3ca764ead696 /src/core/hle/coprocessor.h | |
parent | Merge pull request #149 from linkmauve/open-file-directly-fix (diff) | |
parent | ARM: Removed unnecessary and unused SkyEye MMU code. (diff) | |
download | yuzu-4615c73d15f6f27c5e275c57dcafcb56355b9c2d.tar yuzu-4615c73d15f6f27c5e275c57dcafcb56355b9c2d.tar.gz yuzu-4615c73d15f6f27c5e275c57dcafcb56355b9c2d.tar.bz2 yuzu-4615c73d15f6f27c5e275c57dcafcb56355b9c2d.tar.lz yuzu-4615c73d15f6f27c5e275c57dcafcb56355b9c2d.tar.xz yuzu-4615c73d15f6f27c5e275c57dcafcb56355b9c2d.tar.zst yuzu-4615c73d15f6f27c5e275c57dcafcb56355b9c2d.zip |
Diffstat (limited to 'src/core/hle/coprocessor.h')
-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 |