public static void SendWarning(this IMessageLog messageLog, string format, params object[] args) { messageLog.SendWarning(string.Format(format, args)); }
public static void SendWarning(this IMessageLog messageLog, Opcode opcode, int address, string message) { messageLog.SendWarning("{0}: {1} (PC = {2:x4})", opcode.Name, message, address); }
public static void SendWarning(this IMessageLog messageLog, Opcode opcode, int address, string format, params object[] args) { messageLog.SendWarning(opcode, address, string.Format(format, args)); }
public static void SendWarning(this IMessageLog messageLog, Instruction instruction, string message) { messageLog.SendWarning("{0}: {1} (PC = {2:x4})", instruction.Opcode.Name, message, instruction.Address); }