Reko.Arch.Sparc.SparcArchitecture.SparcArchitecture C# (CSharp) Method

SparcArchitecture() public method

public SparcArchitecture ( PrimitiveType wordWidth ) : Reko.Core
wordWidth PrimitiveType
return 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>();
        }