mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-10 00:29:23 +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;
|
|
}
|
|
} |