mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12:00
ARMv7: argc, argv setting, LDRSB_IMM, bugfixes
This commit is contained in:
parent
8a945a1a52
commit
e5dd03dbcb
14 changed files with 184 additions and 98 deletions
|
@ -103,6 +103,17 @@ void SPUThread::InitRegs()
|
|||
R_ADDR = 0;
|
||||
}
|
||||
|
||||
void SPUThread::InitStack()
|
||||
{
|
||||
m_stack_size = 0x1000; // this value is wrong
|
||||
m_stack_addr = m_offset + 0x40000 - m_stack_size; // stack is the part of SPU Local Storage
|
||||
}
|
||||
|
||||
void SPUThread::CloseStack()
|
||||
{
|
||||
// nothing to do here
|
||||
}
|
||||
|
||||
void SPUThread::DoRun()
|
||||
{
|
||||
switch(Ini.SPUDecoderMode.GetValue())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue