mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
Merge remote-tracking branch 'upstream/master' into spurs_taskset
Conflicts: rpcs3/emucore.vcxproj.filters
This commit is contained in:
commit
d1a7c85e95
184 changed files with 24421 additions and 5225 deletions
|
@ -99,6 +99,19 @@ void SPUThread::InitRegs()
|
|||
|
||||
m_event_mask = 0;
|
||||
m_events = 0;
|
||||
|
||||
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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue