Initializes a new instance of the Bt 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 Bt( EffectiveAddress subject, Immediate bitindex ) |
Visual Basic |
---|
Public Sub New ( _ subject As EffectiveAddress, _ bitindex As Immediate _ ) |
Visual C++ |
---|
public: Bt( EffectiveAddress^ subject, Immediate^ bitindex ) |
Parameters
- subject
- Type: SharpAssembler.x86.Operands..::..EffectiveAddress
The memory operand whose bit is copied.
- bitindex
- Type: SharpAssembler.x86.Operands..::..Immediate
The index of the bit to copy.
Exceptions
Exception | Condition |
---|---|
System..::..ArgumentNullException | subject == null |
System..::..ArgumentNullException | bitindex == null |
Contracts
Requires | ||
---|---|---|
subject != null
| ||
bitindex != null
|