mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-05 00:29:56 +00:00
11 lines
285 B
C#
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;
|
|||
|
}
|
|||
|
}
|