Load Effective Address.Algorithm: REG = address of memory (offset)
Load Effective Address.
Algorithm: REG = address of memory (offset)
LEA REG,Memory
.model small .data num1 dw 1234h num2 dw 5678h ... .code ... ... LEA SI,num1 ;Loads Address of num1 into SI LEA DI,num2 ;Loads Address of num2 into DI ... ... end