I want to know that how can I convert a single opcode with it's operands in it's equivalent assembly code. For example:
Opcode:33 C0
Assembly code: XOR AX,AX
As mentioned above, I want to put "33 C0" into the program (or software) and it should display it's equivalent assembly code result, as given below:
XOR AX, AX
In the same way when i change the opcode little bit to "33 C9" then it should display it's equivalent assembly code, as given below:
Opcode: 33 C9
Assembly code: XOR CX, CX
I will be grateful if you guide me it's revers process (i.e. when I enter the assembly code then it should see it's equivalent opcode), for example:
I enter: XOR AX, AX Then it should display: 33 C0
In the same way when i enter XOR CX, CX Then it should display: 33 C9
I want to get these results instruction by instruction and not in chunk of a lot of code. I tried several softwares for this purpose but they cannot convert instruction by instruction rather they provide a chunk of result which get faulty.
Thanks.