This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

store register in fake memory address instead of reall address

hi
i use the code below to store a value in memory address 0xfffff400,but when i debug ,it sotored reverse in memory address 0xfffff408

AREA CODE,CODE,READonly

ENTRY

LDR R1,=0XAA0AA0FF
LDR R5,=0xfffff400
STR R1,[R5]

END