2014-04-26 05:47:52 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-05-01 23:21:04 +00:00
|
|
|
#include "core/hle/coprocessor.h"
|
2014-04-26 05:47:52 +00:00
|
|
|
#include "core/hle/hle.h"
|
|
|
|
#include "core/mem_map.h"
|
|
|
|
#include "core/core.h"
|
2014-04-25 21:15:19 +00:00
|
|
|
|
|
|
|
namespace HLE {
|
|
|
|
|
|
|
|
/// Returns the coprocessor (in this case, syscore) command buffer pointer
|
2014-04-26 05:47:52 +00:00
|
|
|
Addr GetThreadCommandBuffer() {
|
2014-04-25 21:15:19 +00:00
|
|
|
// Called on insruction: mrc p15, 0, r0, c13, c0, 3
|
2014-05-08 01:04:55 +00:00
|
|
|
return Memory::KERNEL_MEMORY_VADDR;
|
2014-04-25 21:15:19 +00:00
|
|
|
}
|
|
|
|
|
2014-05-02 03:03:50 +00:00
|
|
|
/// Call an MRC (move to ARM register from coprocessor) instruction in HLE
|
|
|
|
s32 CallMRC(u32 instruction) {
|
|
|
|
CoprocessorOperation operation = (CoprocessorOperation)((instruction >> 20) & 0xFF);
|
|
|
|
|
2014-04-25 21:15:19 +00:00
|
|
|
switch (operation) {
|
|
|
|
|
|
|
|
case CALL_GET_THREAD_COMMAND_BUFFER:
|
2014-04-26 05:47:52 +00:00
|
|
|
return GetThreadCommandBuffer();
|
2014-04-25 21:15:19 +00:00
|
|
|
|
|
|
|
default:
|
2014-05-17 00:52:46 +00:00
|
|
|
//DEBUG_LOG(OSHLE, "unknown MRC call 0x%08X", instruction);
|
2014-04-25 21:15:19 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-05-17 00:52:46 +00:00
|
|
|
return -1;
|
2014-04-25 21:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|