CSPspEmu.Core.Cpu.Table.InstructionTable.ID C# (CSharp) Method

ID() private static method

private static ID ( String Name, String BinaryEncoding, String AsmEncoding, AddressType AddressType, InstructionType InstructionType ) : InstructionInfo
Name String
BinaryEncoding String
AsmEncoding String
AddressType AddressType
InstructionType InstructionType
return InstructionInfo
        private static InstructionInfo ID(String Name, String BinaryEncoding, String AsmEncoding, AddressType AddressType, InstructionType InstructionType)
        {
            return new InstructionInfo() { Name = Name, BinaryEncoding = BinaryEncoding, AsmEncoding = AsmEncoding, AddressType = AddressType, InstructionType = InstructionType };
        }
InstructionTable