mov rax, 2
mov rbx, 2
mul rbx, rax //This does not exist
How would I have to write the above example without using any additional mov instructions?
Im using x86-64 assembly.
mov rax, 2
mov rbx, 2
mul rbx, rax //This does not exist
How would I have to write the above example without using any additional mov instructions?
Im using x86-64 assembly.