URL
https://opencores.org/ocsvn/a-z80/a-z80/trunk
Subversion Repositories a-z80
[/] [a-z80/] [trunk/] [tools/] [z80_pla_checker/] [source/] [ClassLog.cs] - Rev 3
Compare with Previous | Blame | View Log
namespace z80_pla_checker
{
/// <summary>
/// Implements the logging to the main window
/// </summary>
static public class ClassLog
{
static public void Log(string m)
{
Program.MainForm.Log(m);
}
}
}