Initializes a new instance of the Sar class.
Namespace: SharpAssembler.x86.InstructionsAssembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public Sar( EffectiveAddress value, Immediate positions ) |
| Visual Basic |
|---|
Public Sub New ( _ value As EffectiveAddress, _ positions As Immediate _ ) |
| Visual C++ |
|---|
public: Sar( EffectiveAddress^ value, Immediate^ positions ) |
Parameters
- value
- Type: SharpAssembler.x86.Operands..::..EffectiveAddress
The value to change.
- positions
- Type: SharpAssembler.x86.Operands..::..Immediate
The number of positions to adjust.
Exceptions
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | value == null |
| System..::..ArgumentNullException | positions == null |
Contracts
| Requires | ||
|---|---|---|
value != null
| ||
positions != null
|