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

GetSubregister() public method

public GetSubregister ( RegisterStorage reg, int offset, int width ) : RegisterStorage
reg RegisterStorage
offset int
width int
return RegisterStorage
        public override RegisterStorage GetSubregister(RegisterStorage reg, int offset, int width)
        {
            if (offset == 0)
                return reg;
            else
                return null;
        }