Esempio n. 1
0
        private void Parse_MEM_CHECK_RESULT(BinaryReader reader, CheckInfo check)
        {
            var res = reader.ReadByte();

            //AppendFormatLine("====== MEM_CHECK result START ======");
            //AppendFormatLine("Result: 0x{0:X2}", res);
            if (res == 0)
            {
                var bytes = reader.ReadBytes(check.m_length);
                AppendFormatLine("MEM Bytes: {0}", Utility.ByteArrayToHexString(bytes));
            }
            //AppendFormatLine("====== MEM_CHECK result END ======");
            //AppendLine();
        }
Esempio n. 2
0
 private void Parse_MEM_CHECK_RESULT(BinaryReader reader, CheckInfo check)
 {
     var res = reader.ReadByte();
     //AppendFormatLine("====== MEM_CHECK result START ======");
     //AppendFormatLine("Result: 0x{0:X2}", res);
     if (res == 0)
     {
         var bytes = reader.ReadBytes(check.m_length);
         AppendFormatLine("MEM Bytes: {0}", bytes.ToHexString());
     }
     //AppendFormatLine("====== MEM_CHECK result END ======");
     //AppendLine();
 }