EightBitNet/M6502/ProfileLineEventArgs.cs

11 lines
399 B
C#

namespace EightBit
{
public class ProfileLineEventArgs(ushort address, string source, long cycles, long count, Dictionary<int, long> cycleDistributions) : CycleCountedEventArgs(cycles, count)
{
public ushort Address { get; } = address;
public string Source { get; } = source;
public Dictionary<int, long> CycleDistributions { get; } = cycleDistributions;
}
}