Reko.Arch.Sparc.SparcArchitecture.SparcArchitecture C# (CSharp) 메소드

SparcArchitecture() 공개 메소드

public SparcArchitecture ( PrimitiveType wordWidth ) : Reko.Core
wordWidth PrimitiveType
리턴 Reko.Core
        public SparcArchitecture(PrimitiveType wordWidth)
        {
            this.WordWidth = wordWidth;
            this.PointerType = PrimitiveType.Create(Domain.Pointer, wordWidth.Size);
            this.StackRegister = Registers.sp;
            this.FramePointerType = PointerType;
            this.InstructionBitSize = 32;
            this.flagGroups = new Dictionary<uint, FlagGroupStorage>();
        }