Possible Duplicate:
What’s the purpose of the LEA instruction?
Having just started assembly language I would like if someone could tell me the difference between using:
load R1,one[R0]
rather than lea R1,1[R0]
when using the value in R1 only as an increment value. For the former, the data is given (one data 1) whereas for the latter data it is not.