初学者汇编帮助

发布于 2024-10-23 13:29:18 字数 44 浏览 2 评论 0原文

有人可以简单地解释一下 AND、SHL 和 CMP 命令如何工作吗?谢谢。

Can someone please explain in simple terms how the AND, SHL and CMP commands work? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

铁憨憨 2024-10-30 13:29:18

AND - 一个 0 位表示结果为 0

1 And 0 = 0
0 And 1 = 0
1 And 1 = 1

5 AND 3
0101 AND 0011(二进制)

     0101
AND  0011
     ----
     0001

SHL - 左移

SHL EAX, 1 -> shift left one bit

SHL 5, 1 -> 5 is 0101 in binary, so if one shift left it becomes 1010(A)

CMP - 比较,它是通用目的,取决于 cpu eflags。

CMP EAX,5
JE wherever   (if eax equals 5, the zero flag is set and jump is made)

AND - One 0 bit means 0 as a result

1 And 0 = 0
0 And 1 = 0
1 And 1 = 1

5 AND 3
0101 AND 0011 (binary)

     0101
AND  0011
     ----
     0001

SHL - Shift Left

SHL EAX, 1 -> shift left one bit

SHL 5, 1 -> 5 is 0101 in binary, so if one shift left it becomes 1010(A)

CMP - Compare, it's general purpose and depends on cpu eflags.

CMP EAX,5
JE wherever   (if eax equals 5, the zero flag is set and jump is made)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文