POP instruction r64 ambiguity
POP r64 should contain REX Prefix. However, nasm doesn't output the prefix for some r64 registers.
Example:
- pop rax: quantr = 40 58, nasm = 58
- pop r10: quantr = 41 5a, nasm = 41 5a
40, 41 in the above example are the REX prefix.