Hey Man,

genau! Die generelle Syntax ist: Befehl, Ziel, Quelle. Guck doch mal in die AVRStudio-Hilfe. Von dort stammt das folgende Beispiel (auszugsweise) zum Befehl ADD :

Description:
Adds two registers without the C flag and places the result in the destination register Rd.

Operation:

Rd <- Rd + Rr

Syntax: Operands: Program Counter:

ADD Rd,Rr 0 ≤ d ≤ 31, 0 ≤ r ≤ 31 PC <- PC + 1

... da siehst Du, dass Rd das ZIEL-Register ist und die "Quelle" Rr dorthin verarbeitet wird.