Exemple #1
0
 public static void WriteLine()
 {
     SysCalls.WriteDebugChar('\n');
 }
Exemple #2
0
 public static void Write(char c)
 {
     SysCalls.WriteDebugChar(c);
 }
Exemple #3
0
 public static void WriteLine(string msg)
 {
     SysCalls.WriteDebugMessage(buf, msg);
     SysCalls.WriteDebugChar('\n');
 }