コード例 #1
0
ファイル: InstrOpKind.cs プロジェクト: yamiM0NSTER/iced
        InstrOpKindEnum(GenTypes genTypes)
        {
            var enumType = new EnumType("InstrOpKind", TypeIds.GasInstrOpKind, null, GetValues(genTypes), EnumTypeFlags.NoInitialize);

            genTypes.Add(enumType);
        }
コード例 #2
0
        MiscSectionNamesType(GenTypes genTypes)
        {
            var type = new ConstantsType(TypeIds.MiscSectionNames, ConstantsTypeFlags.None, null, GetConstants());

            genTypes.Add(type);
        }
コード例 #3
0
ファイル: OpCodeInfoFlagsType.cs プロジェクト: wtf3505/iced
        OpCodeInfoFlagsType(GenTypes genTypes)
        {
            var type = new ConstantsType(TypeIds.OpCodeInfoFlags, ConstantsTypeFlags.None, null, GetConstants());

            genTypes.Add(type);
        }
コード例 #4
0
        DecoderConstantsType(GenTypes genTypes)
        {
            var type = new ConstantsType(TypeIds.DecoderConstants, ConstantsTypeFlags.None, null, GetConstants());

            genTypes.Add(type);
        }
コード例 #5
0
        MiscInstrInfoTestConstantsType(GenTypes genTypes)
        {
            var type = new ConstantsType(TypeIds.MiscInstrInfoTestConstants, ConstantsTypeFlags.None, null, GetConstants());

            genTypes.Add(type);
        }
コード例 #6
0
        InstructionInfoKeysType(GenTypes genTypes)
        {
            var type = new ConstantsType(TypeIds.InstructionInfoKeys, ConstantsTypeFlags.None, null, GetConstants());

            genTypes.Add(type);
        }