[ENGN3213 Home]
Does not involve memory access, rather, direct transfers between registers.
-
MOVE.L D0,D3 - the contents of D0 is copied to D3.
-
MOVE.B D0,D3 - the contents of D0[7:0] is copied to D3[7:0].
-
MOVE.L A2,D3 - the contents of address register A2 is copied to
data register D3.
-
MOVEA.L D3,A2 - the contents of data register D3 is copied to
address register A2.
-
ADD.L #12,D2 - the decimal number 12 is added to [D2] and the result is
stored in D2.
ANU Engineering - ENGN3213