mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 14:31:24 +12:00
- Fixed loading modules in debug mode.
- Improved Lwmutex. - Implemented events syscalls. - Fixed SPU local storage.
This commit is contained in:
parent
991f281bbd
commit
6d7d3acb43
39 changed files with 1639 additions and 902 deletions
|
@ -529,6 +529,8 @@ bool MemoryBase::Write128NN(u64 addr, const u128 data)
|
|||
|
||||
u8 MemoryBase::Read8(u64 addr)
|
||||
{
|
||||
if(enable_log && addr >= 0xd0010a84)
|
||||
ConLog.Warning("Read8 from block: [%08llx]", addr);
|
||||
MemoryBlock& mem = GetMemByAddr(addr);
|
||||
if(mem.IsNULL())
|
||||
{
|
||||
|
@ -540,6 +542,8 @@ u8 MemoryBase::Read8(u64 addr)
|
|||
|
||||
u16 MemoryBase::Read16(u64 addr)
|
||||
{
|
||||
if(enable_log && addr >= 0xd0010a84)
|
||||
ConLog.Warning("Read16 from block: [%08llx]", addr);
|
||||
MemoryBlock& mem = GetMemByAddr(addr);
|
||||
if(mem.IsNULL())
|
||||
{
|
||||
|
@ -551,6 +555,8 @@ u16 MemoryBase::Read16(u64 addr)
|
|||
|
||||
u32 MemoryBase::Read32(u64 addr)
|
||||
{
|
||||
if(enable_log && addr >= 0xd0010a84)
|
||||
ConLog.Warning("Read32 from block: [%08llx]", addr);
|
||||
MemoryBlock& mem = GetMemByAddr(addr);
|
||||
if(mem.IsNULL())
|
||||
{
|
||||
|
@ -562,6 +568,8 @@ u32 MemoryBase::Read32(u64 addr)
|
|||
|
||||
u64 MemoryBase::Read64(u64 addr)
|
||||
{
|
||||
if(enable_log && addr >= 0xd0010a84)
|
||||
ConLog.Warning("Read64 from block: [%08llx]", addr);
|
||||
MemoryBlock& mem = GetMemByAddr(addr);
|
||||
if(mem.IsNULL())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue