I'm trying to understand the basics but so far I can only see examples with two operands:
ADD <target> <source>
means, the values in the <> brackets are summed and stored in < target > . I get this.
But how do I read this:
ADD R10 0x8 R5
?
R5
and R10
mean the addresses in registers, right? What is 0x8?
I would try to transfer as following:
R10 + 0x8 + R5
and store it in R10
. Whatever R5
, R10
and 0x8
is.