amoco
amoco copied to clipboard
Error in display of some movq instruction
>>> from amoco.arch.x64 import cpu_x64 as cpu
>>> i = cpu.disassemble(b'\x66\x48\x0f\x6e\xce')
>>> print(i)
movd xmm1, rsi
It should be movq instead of movd.
Thanks. This one fixed by 89349a6, but I'm still investigating other spec_sse 66+REX prefix issues.