CSPspEmu.Debugger.GdbServerConnectionBase.generatePacketWithChecksum C# (CSharp) Method

generatePacketWithChecksum() protected method

protected generatePacketWithChecksum ( string packet ) : string
packet string
return string
        protected string generatePacketWithChecksum(string packet)
        {
            return "$%s#%02x".Sprintf(packet, checksum(packet));
        }