mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
17 lines
227 B
C++
17 lines
227 B
C++
#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();
|
|
} |