bdcht / amoco

yet another tool for analysing binaries
GNU General Public License v2.0
462 stars 65 forks source link

commit 25846af60fc9ba6787429d6f1093e8b1bf9f8492 broke at least lfence #90

Closed LRGH closed 7 months ago

LRGH commented 7 months ago
>>> from amoco.arch.x64 import cpu_x64 as cpu
>>> i = cpu.disassemble(b'\x0f\xae\xe8')
>>> print(i)
lfence      eax

The output should be lfence, which is the syntax understood by GNU as for example and is the output prior to this commit.

bdcht commented 7 months ago

Hi thanks, hopefully hotfixed by 8f04f58

LRGH commented 7 months ago

Yes, thank you. I will continue working on the merge of my fork with your most recent version...