GetAluRegister() public method

public GetAluRegister ( int i ) : RegisterStorage
i int
return RegisterStorage
Example #1
0
        private MachineOperand GetAluRegister(char pos)
        {
            RegisterStorage reg = arch.GetAluRegister(this.FieldValue(pos));

            return(new RegisterOperand(reg));
        }