Merge remote-tracking branch 'upstream/master' into spurs_taskset

Conflicts:
	rpcs3/emucore.vcxproj.filters
This commit is contained in:
S Gopal Rajagopal 2015-02-03 23:12:26 +05:30
commit d1a7c85e95
184 changed files with 24421 additions and 5225 deletions

View file

@ -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()