Initializes a new instance of the Prefetchl 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 Prefetchl(
	EffectiveAddress address,
	Prefetchl..::..PrefetchLevel level
)
Visual Basic
Public Sub New ( _
	address As EffectiveAddress, _
	level As Prefetchl..::..PrefetchLevel _
)
Visual C++
public:
Prefetchl(
	EffectiveAddress^ address, 
	Prefetchl..::..PrefetchLevel level
)

Parameters

address
Type: SharpAssembler.x86.Operands..::..EffectiveAddress
The address to prefetch.
level
Type: SharpAssembler.x86.Instructions..::..Prefetchl..::..PrefetchLevel
The prefetch level.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionaddress == null
System.ComponentModel..::..InvalidEnumArgumentException!(Enum.IsDefined(typeof(PrefetchLevel), level))
System..::..ArgumentExceptionlevel == PrefetchLevel.None

Contracts

Requires
address != null
Enum.IsDefined(typeof(PrefetchLevel), level)
level != PrefetchLevel.None

See Also