Hi I have a question about multiplying register pairs. I have a register pair edx:eax and now I want to multiply it, in my case - by 10. Maximum value which will be the result won't be higher than max value on 64-bits, so no overflow will happen. How do I go about this?
.data
ten dd 10
.code
mul dword PTR ten
;instead of multiplying eax by ten i want to do the same on edx:eax.