summaryrefslogtreecommitdiffstats
path: root/src/core/hle/hle.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-25 23:15:19 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-25 23:15:19 +0200
commitcb0663de5147f10533ecdbf6f58865f7cbe0241c (patch)
tree30a122d3da59134e431ab2e6ef389d8f00467038 /src/core/hle/hle.cpp
parentadded disassembly to unimplemented instruction (diff)
downloadyuzu-cb0663de5147f10533ecdbf6f58865f7cbe0241c.tar
yuzu-cb0663de5147f10533ecdbf6f58865f7cbe0241c.tar.gz
yuzu-cb0663de5147f10533ecdbf6f58865f7cbe0241c.tar.bz2
yuzu-cb0663de5147f10533ecdbf6f58865f7cbe0241c.tar.lz
yuzu-cb0663de5147f10533ecdbf6f58865f7cbe0241c.tar.xz
yuzu-cb0663de5147f10533ecdbf6f58865f7cbe0241c.tar.zst
yuzu-cb0663de5147f10533ecdbf6f58865f7cbe0241c.zip
Diffstat (limited to 'src/core/hle/hle.cpp')
-rw-r--r--src/core/hle/hle.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/hle/hle.cpp b/src/core/hle/hle.cpp
index 5672a659f..aae9a3943 100644
--- a/src/core/hle/hle.cpp
+++ b/src/core/hle/hle.cpp
@@ -80,14 +80,6 @@ void CallSyscall(u32 opcode) {
}
}
-/// Returns the coprocessor (in this case, syscore) command buffer pointer
-Addr CallGetThreadCommandBuffer() {
- // Called on insruction: mrc p15, 0, r0, c13, c0, 3
- // Returns an address in OSHLE memory for the CPU to read/write to
- RETURN(CMD_BUFFER_ADDR);
- return CMD_BUFFER_ADDR;
-}
-
void RegisterModule(std::string name, int num_functions, const FunctionDef* func_table) {
ModuleDef module = {name, num_functions, func_table};
g_module_db.push_back(module);