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