rpcsx/rpcs3/Emu/GS/RSXThread.cpp

17 lines
227 B
C++
Raw Normal View History

#include "stdafx.h"
#include "RSXThread.h"
RSXThread::RSXThread(CellGcmControl* ctrl, u32 ioAddress)
: m_ctrl(*ctrl)
, m_ioAddress(ioAddress)
{
}
void RSXThread::Task()
{
}
void RSXThread::OnExit()
{
call_stack.Clear();
}