MASM611 中的乘法

发布于 2024-10-03 16:01:50 字数 70 浏览 2 评论 0原文

你好,我在 5 位以上的乘法中遇到问题,我正在 MASM611 中工作,请告诉我 MASM611 中至少 8 位乘法的解决方案

hii i have a problem in multiplication for above 5 bits i'm working in MASM611 plz tell me the solution which is for atleast 8 bit multiplication in MASM611

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

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

发布评论

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

评论(1

萌︼了一个春 2024-10-10 16:01:50

对于无符号整数乘法,使用 mul;用于签名使用 imul。如果操作数是 8 位寄存器,则得到 16 位结果。

例如:


mov al, 3
mov cl, 5
mul cl

将 15 放入 axe 中。

研究此页面:http://web.archive.org/web/20120414214754/http://www.arl.wustl.edu/~lockwood/class/cs306/books/artofasm/Chapter_6/CH06 -2.html

for unsigned integer multiply, use mul; for signed use imul. if the operand is an 8-bit register, you get a 16-bit result.

for example:


mov al, 3
mov cl, 5
mul cl

puts 15 in ax.

study this page: http://web.archive.org/web/20120414214754/http://www.arl.wustl.edu/~lockwood/class/cs306/books/artofasm/Chapter_6/CH06-2.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文