Files
EightBitNet/M6502/ProfileLineEventArgs.cs
2024-07-15 18:05:39 +01:00

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;
}
}