Movement Flashcards

1
Q

< operation >
MOV – move

A

Rd := Operand2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

< operation >
MVN – move NOT

A

Rd := 0xFFFFFFFF EOR Operand2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

MOV r0, #42

A

Move the constant 42 into register R0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

MOV r2, r3

A

Move the contents of register R3 into register R2.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

MVN r1, r0

A

R1 = NOT(R0) = -43

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

MOV r0, r0

A

A NOP (no operation) instruction.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly