EightBitNet/M6502/ProfileInstructionEventArgs.cs
2024-07-10 20:38:55 +01:00

11 lines
285 B
C#

namespace EightBit
{
public class ProfileInstructionEventArgs(byte instruction, long cycles, long count) : EventArgs
{
public byte Instruction { get; } = instruction;
public long Cycles { get; } = cycles;
public long Count { get; } = count;
}
}