You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jmp eax
test eax, eax
add eax, 0x2
int 0x0
mov eax, data_401022
jmp 0x401019
je 0x401019
mov eax, data_401020
mov eax, data_401024
add byte [eax], al
test ebx, ebx
je 0x40100b
add byte [eax], al
generates the following
jmp eax
test eax,l %eax
add eax, $0x2
int 0x0
mov eax, $data_401022
jmp 0x401019
je 0x401019
mov eax, $data_401020
mov eax, $data_401024
add byteb %al,(%eax)
test ebx,l %ebx
je 0x40100b
add byte $a,(%eax)
``
other errors are that the `test eax, eax` appears to be incorrectly converted
The text was updated successfully, but these errors were encountered:
running the convertor on
generates the following
The text was updated successfully, but these errors were encountered: