void u128::WriteTo8( FastFormatAscii& dest ) const { dest.Write( "0x%02X.%02X", _u8[0], _u8[1] ); for (uint i=2; i<16; i+=2) dest.Write( ".%02X.%02X", _u8[i], _u8[i+1] ); }
void SysTraceLog_VIFcode::ApplyPrefix( FastFormatAscii& ascii ) const { _parent::ApplyPrefix(ascii); ascii.Write( "vifCode_" ); }
void u128::WriteTo64( FastFormatAscii& dest ) const { dest.Write( "0x%08X%08X.%08X%08X", _u32[0], _u32[1], _u32[2], _u32[3] ); }
void SysTraceLog_IOP::ApplyPrefix( FastFormatAscii& ascii ) const { ascii.Write( "%-4s(%8.8lx %8.8lx): ", ((SysTraceLogDescriptor*)m_Descriptor)->Prefix, psxRegs.pc, psxRegs.cycle ); }