mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-19 00:55:45 -04:00
CPU: Basic recompiler implementation for x64 (lui, ori, addiu)
Disabled by default.
This commit is contained in:
@ -25,6 +25,10 @@ TickCount Bus::DoRAMAccess(u32 offset, u32& value)
|
||||
}
|
||||
else
|
||||
{
|
||||
const u32 page_index = offset / CPU_CODE_CACHE_PAGE_SIZE;
|
||||
if (m_ram_code_bits[page_index])
|
||||
DoInvalidateCodeCache(page_index);
|
||||
|
||||
if constexpr (size == MemoryAccessSize::Byte)
|
||||
{
|
||||
m_ram[offset] = Truncate8(value);
|
||||
|
Reference in New Issue
Block a user