amoco icon indicating copy to clipboard operation
amoco copied to clipboard

Error in display of some movq instruction

Open LRGH opened this issue 1 year ago • 1 comments

>>> 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.

LRGH avatar Feb 29 '24 17:02 LRGH

Thanks. This one fixed by 89349a6, but I'm still investigating other spec_sse 66+REX prefix issues.

bdcht avatar Mar 04 '24 09:03 bdcht