mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-08 16:31:38 +00:00
11 lines
399 B
C#
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;
|
|
}
|
|
} |