示例#1
0
bool EXPORT_CALL b_EmuStart() //returns false if it failed.It can fail if non inited and implicit init failed.
{
	bool init=Init_DC();
	if (init==false)
		return false;

	Start_DC();
	return true;
}
示例#2
0
void Start_DC()
{
    if (!dc_inited)
    {
        if (!Init_DC())
            return;
    }

	if (!sh4_cpu->IsCpuRunning())
	{
		if (!dc_reseted)
			Reset_DC(false);//hard reset kthx

		sh4_cpu->Run();
	}
}
示例#3
0
bool EXPORT_CALL b_EmuInit()
{
	return Init_DC();
}