2016-02-21 22:34:14 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2014-12-05 00:17:34 +00:00
|
|
|
|
|
2016-08-13 20:31:04 +00:00
|
|
|
|
//garbage
|
|
|
|
|
|
2014-12-05 00:17:34 +00:00
|
|
|
|
namespace BizHawk.Emulation.Common
|
|
|
|
|
{
|
2014-12-23 01:58:12 +00:00
|
|
|
|
public class TraceBuffer : ITraceable
|
2014-12-05 00:17:34 +00:00
|
|
|
|
{
|
|
|
|
|
public TraceBuffer()
|
|
|
|
|
{
|
|
|
|
|
Header = "Instructions";
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-13 20:31:04 +00:00
|
|
|
|
public string Header { get; set; }
|
2014-12-05 00:17:34 +00:00
|
|
|
|
|
2016-08-13 20:31:04 +00:00
|
|
|
|
public ITraceSink Sink { get; set; }
|
2014-12-05 00:17:34 +00:00
|
|
|
|
|
2016-08-13 20:31:04 +00:00
|
|
|
|
public bool Enabled { get { return Sink != null; } }
|
2014-12-05 00:17:34 +00:00
|
|
|
|
|
2016-08-13 20:31:04 +00:00
|
|
|
|
public void Put(TraceInfo info) { Sink.Put(info); }
|
2014-12-05 00:17:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|