Exercise 7.2.1. Limitations of Operand Usage.
add %rax, $8
- Incorrect.
add %rax, (%rbx)
- Correct!
add (%rax), %rbx
- Correct!
add (%rax), (%rbx)
- Incorrect.
add (%rax, %rbx, 10), %rcx
- Incorrect.
Which of the following are valid x86_64 instructions? Select ALL that apply.