예제 #1
0
 private void button3_Click(object sender, EventArgs e)
 {
     listBox1.Items.Clear();
     listBox1.Items.Add("All");
     for (int i = 0; i < 12; i++)
     {
         UTF8Encoding encoding = new UTF8Encoding();
         string       ff       = encoding.GetString(Console.GetMemory(getPlayerState((uint)i) + 0x301C, 20));
         listBox1.Items.Add(ff);
     }
 }
예제 #2
0
 public static byte[] GetMemoryDump(uint offset, uint size)
 {
     return(jtag.GetMemory(offset, size));
 }
예제 #3
0
 public byte[] GetStat(uint clientIndex, uint index, uint length)
 {
     return(xbc.GetMemory(SV_GetClientStatEntry(clientIndex) + index, length));
 }