Skip to content

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, bool isOpcodeRead = false);

View source

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, if any.
isOpcodeRead Boolean Indicates whether this cycle is reading an opcode.