Files
EightBitNet/M6502/ProfileInstructionEventArgs.cs
T
2024-09-18 11:23:51 +01:00

11 lines
292 B
C#

namespace EightBit
{
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;
}
}