mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
Memory cleanup, page flags implemented
RSXCMDMem, SPRXMem, MmaperMem removed MainMem range fixed
This commit is contained in:
parent
0eebfb0aaa
commit
267de68441
23 changed files with 259 additions and 260 deletions
|
|
@ -200,7 +200,7 @@ void MemoryViewerPanel::ShowMemory()
|
|||
{
|
||||
u32 addr = m_addr + row * m_colcount + col;
|
||||
|
||||
if (Memory.IsGoodAddr(addr))
|
||||
if (vm::check_addr(addr))
|
||||
{
|
||||
const u8 rmem = vm::read8(addr);
|
||||
t_mem_hex_str += wxString::Format("%02x ", rmem);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue