Files
EightBitNet/M6502/ProfileInstructionEventArgs.cs
2024-10-09 19:48:33 +01:00

11 lines
289 B
C#

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