gpt4 book ai didi

assembly - SHL和SAL在80x86中的区别

转载 作者:行者123 更新时间:2023-12-03 10:12:27 24 4
gpt4 key购买 nike

我已经学会了如何使用80x86汇编器,因此在按位移位操作中,我遇到了SAL和SHL使用的问题。我的意思是代码行之间的区别如下:

MOV X, 0AAH
SAL X, 4

MOV X, 0AAH
SHL X, 4

什么时候应该使用SHL,什么时候应该使用SAL?它们有什么区别?

最佳答案

根据this,它们是相同的:

The shift arithmetic left (SAL) and shift logical left (SHL) instructions perform the same operation; they shift the bits in the destination operand to the left (toward more significant bit locations). For each shift count, the most significant bit of the destination operand is shifted into the CF flag, and the least significant bit is cleared (see Figure 7-7 in the Intel®64 and IA-32 Architectures Software Developer'sManual, Volume 1).



两者都可能只是出于完整性考虑,因为右移有所区别。

关于assembly - SHL和SAL在80x86中的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8373415/

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