Initializes a new instance of the Enter class.

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 Enter(
	Immediate stackframeSize,
	Immediate nestingLevel
)
Visual Basic
Public Sub New ( _
	stackframeSize As Immediate, _
	nestingLevel As Immediate _
)
Visual C++
public:
Enter(
	Immediate^ stackframeSize, 
	Immediate^ nestingLevel
)

Parameters

stackframeSize
Type: SharpAssembler.x86.Operands..::..Immediate
The stack frame size.
nestingLevel
Type: SharpAssembler.x86.Operands..::..Immediate
The nesting level.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionstackframeSize == null
System..::..ArgumentNullExceptionnestingLevel == null

Contracts

Requires
stackframeSize != null
nestingLevel != null

See Also