Beginner at assembly code but I'm a bit confused between the usage of move
and load
, being:
move ra rd
load ra rd
load ra (rd)
from what I've read, move ra rd
copies the value from RD to RA, load ra rd
copies the value in RD from memory to RA, while load ra (rd)
does the same thing as load ra rd
. Am I mistaken or are the last two the same?