EightBitNet/M6502/ProfileInstructionEventArgs.cs

11 lines
285 B
C#
Raw Normal View History

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