You are here : assembly8086LES

LES - 8086

Load memory double word into word register and ES.

Algorithm: 

  • REG = first word
  • ES = second word


Syntax

LES Reg,memory


Example

.model small
.data
  m dd 12345678h
  ...
.code
  ...
  ...
  LEA AX,m
  ;AX=1234h,ES=5678h
  ...
  ...
  end


Output / Return Value


Limitations


Alternatives / See Also


Reference