Files
EightBitNet/M6502/ProfileLineEventArgs.cs
2024-09-18 11:23:51 +01:00

11 lines
406 B
C#

namespace EightBit
{
public sealed 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;
}
}