Reko.Arch.Sparc.SparcArchitecture.SparcArchitecture C# (CSharp) Méthode

SparcArchitecture() public méthode

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