仿真平台内核初版 -tlib库 包含<sparc arm riscv powerPC>
This commit is contained in:
18
lib/termsharp/Vt100/ConsoleDecoderLogger.cs
Normal file
18
lib/termsharp/Vt100/ConsoleDecoderLogger.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
//
|
||||
// Copyright (c) Antmicro
|
||||
//
|
||||
// Full license details are defined in the 'LICENSE' file.
|
||||
//
|
||||
using System;
|
||||
|
||||
namespace TermSharp.Vt100
|
||||
{
|
||||
public class ConsoleDecoderLogger : IDecoderLogger
|
||||
{
|
||||
public void Log(string format, params object[] args)
|
||||
{
|
||||
Console.WriteLine(format, args);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user