Complete 8086 instruction set[LES]

LES

Operands: REG, memory Load memory double word into word register and ES. Algorithm: REG = first word ES = second word Example: #make_COM# ORG 100h LES AX, m RET m DW 1234h DW 5678h END AX is set to 1234h, ES is set to 5678h. Flags: C Z S O P A unchanged