mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-06-10 21:52:08 +00:00
11 lines
289 B
C#
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;
|
|
}
|
|
} |