EightBitNet/M6502/ProfileLineEventArgs.cs
2024-07-10 20:38:55 +01:00

7 lines
202 B
C#

namespace EightBit
{
public class ProfileLineEventArgs(string source, long cycles, long count) : CycleCountedEventArgs(cycles, count)
{
public string Source { get; } = source;
}
}