gpt4 book ai didi

assembly - jne 到 eax 中的值

转载 作者:行者123 更新时间:2023-12-04 08:09:24 25 4
gpt4 key购买 nike

对于一个类,我需要有条件地跳转到值 $0x55683af8:
但是,此代码无效。我如何跳转到以下值?

 mov    $0x55683af8,%eax
cmpl $0xdeadbeef,0x0(%ebp)
jne *%eax

最佳答案

您不能将条件跳转与寄存器结合使用,而您可以这样做...

 mov    $0x55683af8,%eax
cmpl $0xdeadbeef,0x0(%ebp)
je Skip
jmp *%eax //or call
Skip

关于assembly - jne 到 eax 中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8017149/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com