Is it possible to automatically translate x86 assembly code snippet (not full program) to corresponding binary machine code snippet?
For example:
xor eax, eax
mov [ebx + 12], eax
into:
31 c0
89 43 0c
I really need only corresponding set of bytes. Normally I would have to look into some instructions set reference and translate it manually, but I'm quite sure that there is some program that does it automatically.
If you know such tool, please tell me its name or share a link.
dumppe.exewhat you are looking for? using the methods i outline in my answer on this question? (i don't really want to write all that out because i i may be off the mark)