Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否设置了辅助标志?我如何在大会中做到这一点。任何帮助将不胜感激。
使用lahf(从标志加载 AH)后跟test(检查值):
lahf
test
lahf test ah, 10h jnz .aux_nonzero
一种方法是将标志寄存器推入堆栈(pushf),然后将其弹出到通用寄存器(pop ax例如),并检查ax.
pushf
pop ax
ax
看看这个站点,它详细介绍了 x86 架构的综合汇编指令集。
当格雷,你打败了我……哦,好吧……
它是代表辅助标志 (AF) 的第四位... 如此处所示