summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2014-04-03 19:04:14 -0400
committerGravatar bunnei2014-04-03 19:04:14 -0400
commit20bf361b95224f65141c6237b66a26a5fae156d7 (patch)
tree4d76b6f81ee747c85d16f2bcceeb66231a485d24
parentadded thumb mode emulation (diff)
downloadyuzu-20bf361b95224f65141c6237b66a26a5fae156d7.tar.gz
yuzu-20bf361b95224f65141c6237b66a26a5fae156d7.tar.xz
yuzu-20bf361b95224f65141c6237b66a26a5fae156d7.zip
removed some useless log messages
-rw-r--r--src/core/src/mem_map_funcs.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/src/mem_map_funcs.cpp b/src/core/src/mem_map_funcs.cpp
index 0d22d9193..f989e3487 100644
--- a/src/core/src/mem_map_funcs.cpp
+++ b/src/core/src/mem_map_funcs.cpp
@@ -53,7 +53,6 @@ inline void ReadFromHardware(T &var, const u32 addr) {
53 53
54template <typename T> 54template <typename T>
55inline void WriteToHardware(u32 addr, const T data) { 55inline void WriteToHardware(u32 addr, const T data) {
56 NOTICE_LOG(MEMMAP, "Test1 %08X", addr);
57 // ExeFS:/.code is loaded here: 56 // ExeFS:/.code is loaded here:
58 if ((addr & 0xFFF00000) == 0x00100000) { 57 if ((addr & 0xFFF00000) == 0x00100000) {
59 // TODO(ShizZy): This is dumb... handle correctly. From 3DBrew: 58 // TODO(ShizZy): This is dumb... handle correctly. From 3DBrew:
@@ -63,7 +62,6 @@ inline void WriteToHardware(u32 addr, const T data) {
63 // applies when this flag is clear. Executables are usually loaded to 0x14000000 when the 62 // applies when this flag is clear. Executables are usually loaded to 0x14000000 when the
64 // exheader "special memory" flag is set, however this address can be arbitrary. 63 // exheader "special memory" flag is set, however this address can be arbitrary.
65 *(T*)&g_fcram[addr & MEM_FCRAM_MASK] = data; 64 *(T*)&g_fcram[addr & MEM_FCRAM_MASK] = data;
66 NOTICE_LOG(MEMMAP, "Test2");
67 65
68 // Scratchpad memory 66 // Scratchpad memory
69 } else if (addr > MEM_SCRATCHPAD_VADDR && addr <= (MEM_SCRATCHPAD_VADDR + MEM_SCRATCHPAD_SIZE)) { 67 } else if (addr > MEM_SCRATCHPAD_VADDR && addr <= (MEM_SCRATCHPAD_VADDR + MEM_SCRATCHPAD_SIZE)) {