I am trying to figure out how register indirect addressing works. I have a variable that stores the value of 5 as follows:
section .data
number db 53 ; ascii code for 5
section .bss
number2 resb 1
section .text
global _start
_start:
mov eax,number
mov number2,[eax]
At the last two lines of the code what I am essentially trying to do is made eax act like a pointer to the data stored at number and then move this data into the number2 variable. I had though indirect register addressing was done via [register] but my code does not seem to work. Any help with regards to syntax would be much appreciated.
Labels work as addresses in nasm so your
mov number2, [eax]
would translate to something likemov 0x12345678, [eax]
which is of course invalid because you cannot move data to immediate operand. So you would needmov [number2], [eax]
but that's also invalid.You can achieve this using some register to temporarily hold the value
[eax]
: