将 2 字节变量截断为 1 字节
这似乎是一个微不足道的问题,但我迷路了。
在此示例中,character
是一个 2 字节变量,而寄存器 bx
是一个单字节。我正在尝试执行 cmp bx, [character]
,但由于大小不同,这显然行不通。
我试图将 bx
与 character
的第一个字节进行比较。想法?
This seems like a a trivial question, but I'm lost.
In this example character
is a 2 byte variable, while the register bx
is a single byte. I'm trying to do cmp bx, [character]
, which clearly won't work because of the difference in size.
I'm trying to compare bx
to only the first byte of character
. Thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
bx rebister是16位大小,由两个8位bl和bh组成!
对于 16 位 cmp,您可以使用前缀:
对于 8 位 bl cmp
或 8 位 bh cmp
bx rebister is 16 bit size and is composed from two 8 bit bl and bh!
For 16 bit cmp you can use prefix:
for 8 bit bl cmp
or 8 bit bh cmp