diff options
author | Liam <byteslice@airmail.cc> | 2022-04-12 23:26:27 +0200 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-04-13 14:41:27 +0200 |
commit | f17aaeccf915f4d2eef58354da5b16700263dba4 (patch) | |
tree | 9f0420dabd5345577226a16ed017485bbbe8e8d2 /src/core/hle/kernel | |
parent | Merge pull request #8165 from bunnei/ensure-session-port-cleanup (diff) | |
download | yuzu-f17aaeccf915f4d2eef58354da5b16700263dba4.tar yuzu-f17aaeccf915f4d2eef58354da5b16700263dba4.tar.gz yuzu-f17aaeccf915f4d2eef58354da5b16700263dba4.tar.bz2 yuzu-f17aaeccf915f4d2eef58354da5b16700263dba4.tar.lz yuzu-f17aaeccf915f4d2eef58354da5b16700263dba4.tar.xz yuzu-f17aaeccf915f4d2eef58354da5b16700263dba4.tar.zst yuzu-f17aaeccf915f4d2eef58354da5b16700263dba4.zip |
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r-- | src/core/hle/kernel/k_code_memory.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/core/hle/kernel/k_code_memory.cpp b/src/core/hle/kernel/k_code_memory.cpp index 63bbe02e9..09eaf004c 100644 --- a/src/core/hle/kernel/k_code_memory.cpp +++ b/src/core/hle/kernel/k_code_memory.cpp @@ -35,9 +35,14 @@ ResultCode KCodeMemory::Initialize(Core::DeviceMemory& device_memory, VAddr addr R_TRY(page_table.LockForCodeMemory(addr, size)) // Clear the memory. - for (const auto& block : m_page_group.Nodes()) { - std::memset(device_memory.GetPointer(block.GetAddress()), 0xFF, block.GetSize()); - } + // + // FIXME: this ends up clobbering address ranges outside the scope of the mapping within + // guest memory, and is not specifically required if the guest program is correctly + // written, so disable until this is further investigated. + // + // for (const auto& block : m_page_group.Nodes()) { + // std::memset(device_memory.GetPointer(block.GetAddress()), 0xFF, block.GetSize()); + // } // Set remaining tracking members. m_address = addr; |