Cycle Constructors
Represents a single CPU cycle with its associated type, timing, address, and data information.
public Cycle(CycleType type, ulong index, ushort address, Byte data);
Parameters
| Name | Type | Description |
|---|---|---|
type |
CycleType |
The type of CPU cycle. |
index |
UInt64 |
The sequential index of the cycle. |
address |
UInt16 |
The memory address associated with the cycle. |
data |
Byte |
The data value associated with the cycle. |