-2

我正在寻找某些 EAX 中的特定值,需要在一种特定情况下更改它。

编码:

If EBX="000080" then

EBX = "0000200"

End If

但我在 Auto Assemble 上运行。到目前为止,如果需要更改值

mov ebx,0000200

else

mov [esi+48],ebx

如果 then 可以如何在 Assembly 上实现?

mov ebx,200

else

mov [esi+48],ebx
4

1 回答 1

1
    cmp ebx, 80
    jne 1f
    mov ebx, 200
    jmp 2f
1:  mov [esi+48], ebx
2:
于 2019-05-07T20:22:48.497 回答