moved HLE::MRC to its own module, added support for catching data synchronization barrier command

This commit is contained in:
bunnei
2014-04-25 17:15:19 -04:00
parent 6151e26958
commit cb0663de51
9 changed files with 66 additions and 13 deletions

20
src/core/hle/mrc.h Normal file
View File

@ -0,0 +1,20 @@
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include "common/common_types.h"
namespace HLE {
/// MRC operations (ARM register from coprocessor), decoded as instr[20:27]
enum ARM11_MRC_OPERATION {
DATA_SYNCHRONIZATION_BARRIER = 0xE0,
CALL_GET_THREAD_COMMAND_BUFFER = 0xE1,
};
/// Call an MRC operation in HLE
u32 CallMRC(ARM11_MRC_OPERATION operation);
} // namespace