EightBitNet/MC6809/ProfileLineEventArgs.cs
Adrian Conlon c4d52512b2 Add MC6809 profiler (mainly so I can pin down problem printing numbers)
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-05-07 00:46:30 +01:00

17 lines
336 B
C#

namespace EightBit
{
using System;
public class ProfileLineEventArgs : EventArgs
{
public ProfileLineEventArgs(string source, ulong cycles)
{
this.Source = source;
this.Cycles = cycles;
}
public string Source { get; }
public ulong Cycles { get; }
}
}