コード例 #1
0
ファイル: GPFifo.cpp プロジェクト: diegobill/dolphin
void Write32(const u32 _iValue, const u32 _iAddress)
{
//#ifdef _DEBUG
//	float floatvalue = *(float*)&_iValue;
//	LOG(GPFIFO, "GPFIFO #%x: 0x%08x / %f",ProcessorInterface::Fifo_CPUWritePointer+m_gatherPipeCount, _iValue, floatvalue);
//#endif
	FastWrite32(_iValue);
	CheckGatherPipe();
}
コード例 #2
0
ファイル: GPFifo.cpp プロジェクト: Antidote/dolphin
void Write32(const u32 value)
{
  FastWrite32(value);
  CheckGatherPipe();
}