Gets the register or memory operand from which the bit is copied and set.

Namespace: SharpAssembler.x86.Instructions
Assembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public Operand Subject { get; }
Visual Basic
Public ReadOnly Property Subject As Operand
	Get
Visual C++
public:
property Operand^ Subject {
	Operand^ get ();
}

Field Value

An Operand.

Contracts

Get

Ensures
Contract.Result<Operand>() != null
					Contract.Result<Operand>() is RegisterOperand ||
					Contract.Result<Operand>() is EffectiveAddress

See Also