Esempio n. 1
0
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();
}
Esempio n. 2
0
void Write64(const u64 _iValue, const u32 _iAddress)
{
	FastWrite64(_iValue);
	CheckGatherPipe();
}
Esempio n. 3
0
void Write64(const u64 _iValue)
{
	FastWrite64(_iValue);
	CheckGatherPipe();
}
Esempio n. 4
0
void Write16(const u16 _iValue, const u32 _iAddress)
{
//	LOG(GPFIFO, "GPFIFO #%x: 0x%04x",ProcessorInterface::Fifo_CPUWritePointer+m_gatherPipeCount, _iValue);
	FastWrite16(_iValue);
	CheckGatherPipe();
}
Esempio n. 5
0
void Write8(const u8 _iValue)
{
//	LOG(GPFIFO, "GPFIFO #%x: 0x%02x",ProcessorInterface::Fifo_CPUWritePointer+m_gatherPipeCount, _iValue);
	FastWrite8(_iValue);
	CheckGatherPipe();
}
Esempio n. 6
0
void FastWriteEnd()
{
	CheckGatherPipe();
}
Esempio n. 7
0
void Write32(const u32 value)
{
  FastWrite32(value);
  CheckGatherPipe();
}
Esempio n. 8
0
void Write16(const u16 value)
{
  FastWrite16(value);
  CheckGatherPipe();
}
Esempio n. 9
0
void Write8(const u8 value)
{
  FastWrite8(value);
  CheckGatherPipe();
}