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

assembler order

What means this line in assembler?

__user_libspace:
0x10000AE0  ES813Bf3 ADD   R3, R1, #0x0001CC00

instruction at the addr 0x10000AE0 called a ADD order to add value in R1 to R3 - but what about the #0x0001CC00?

Parents
  • Without specifying what architecture you are referring to, any answer can only be considered a guess.

    Let me guess that you're referring to ARM assembly.

    In that case, you can refer to any description of ARM assembly (for example the "Realview Compilation Tools Assembler Guide") and read up on the parameters of the ADD instruction.

Reply
  • Without specifying what architecture you are referring to, any answer can only be considered a guess.

    Let me guess that you're referring to ARM assembly.

    In that case, you can refer to any description of ARM assembly (for example the "Realview Compilation Tools Assembler Guide") and read up on the parameters of the ADD instruction.

Children