Can someone please explain what the difference between the following two are? I'm finding it a little difficult to understand the concepts behind addressing modes
mov ax, [bx + di + 10]
mov ax, [bx + di] + 10
Thanks so much!
|
|
|
You labelled this MASM32 but neither instruction is legitimate for x86. Unless you are doing 16 bit programming, in which case you should make that clear.
Is not legal in x86 because it uses 16 bit addressing. The following is allowed, however:
Which means take the value of ebx, add it to the value of edi, and add 10 to that value. Then treat the final value as a pointer. Take the
Is not legal similarly (16 bit addressing). If you were to do:
That is also not allowed since |
|||
|
|
|
There is no difference! You can check with debugger...
Compiler will compile boath instructions to: 8B443B0A So, ax should load the 16 bit value from address: bx + di + 10 |
||||
|
|
|
Suppose bx=10 , di = 10. In case 1,
The value at memory location 30 will be copied to AX register In case 2,
The value at memory location 20, lets say X, add 10h to it |
|||||||||||||
|