我正在寻找某些 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
我正在寻找某些 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