Difference between lea and offset
        Posted  
        
            by R.K.Rahu
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by R.K.Rahu
        
        
        
        Published on 2010-05-09T11:07:01Z
        Indexed on 
            2010/05/09
            11:08 UTC
        
        
        Read the original article
        Hit count: 320
        
assembly
ar db "Defference $"
What the difference when I used
mov dl,offset ar
and
lea dl,ar
I think both are doing same work but what is the difference between these two
Please specify clearly
© Stack Overflow or respective owner