mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 17:01:24 +12:00
- Fixed memory leaks in cellRtc module.
- Fixed CPUThread crash. - Improved ARMv7 Interpreter.
This commit is contained in:
parent
3b15f35432
commit
6ea2c7d6a8
6 changed files with 949 additions and 729 deletions
|
@ -24,12 +24,12 @@ void ARMv7Thread::InitStack()
|
|||
m_stack_addr = Memory.Alloc(0x10000, 1);
|
||||
}
|
||||
|
||||
m_stack_point = m_stack_addr;
|
||||
m_stack_point = m_stack_addr + m_stack_size;
|
||||
}
|
||||
|
||||
u64 ARMv7Thread::GetFreeStackSize() const
|
||||
{
|
||||
return GetStackSize() - (SP - GetStackAddr());
|
||||
return SP - GetStackAddr();
|
||||
}
|
||||
|
||||
void ARMv7Thread::SetArg(const uint pos, const u64 arg)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue