Ypsilon.Emulation.Processor.YCPU.YCPUInstruction.YCPUInstruction C# (CSharp) Method

YCPUInstruction() public method

public YCPUInstruction ( string name, YCPUOpcode opcode, YCPUDisassembler disassembler, int cycles, bool isNOP = false ) : System
name string
opcode YCPUOpcode
disassembler YCPUDisassembler
cycles int
isNOP bool
return System
            public YCPUInstruction(string name, YCPUOpcode opcode, YCPUDisassembler disassembler, int cycles, bool isNOP = false)
            {
                Name = name;
                Opcode = opcode;
                Disassembler = disassembler;
                Cycles = cycles;
                IsNOP = isNOP;
            }
YCPU.YCPUInstruction