Gets the ModR/M byte to encode.

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

Syntax

C#
public EncodedInstruction..::..ModRMByte ModRM { get; }
Visual Basic
Public ReadOnly Property ModRM As EncodedInstruction..::..ModRMByte
	Get
Visual C++
public:
property EncodedInstruction..::..ModRMByte^ ModRM {
	EncodedInstruction..::..ModRMByte^ get ();
}

Field Value

A EncodedInstruction..::..ModRMByte; or nullNothingnullptra null reference (Nothing in Visual Basic) to not encode a ModR/M byte. The default is nullNothingnullptra null reference (Nothing in Visual Basic).

Remarks

To ensure that a ModR/M byte will be created (i.e. that this property is not nullNothingnullptra null reference (Nothing in Visual Basic)), call the SetModRMByte()()()() method.

See Also