标签: masm multiplying
hii我在MASM611工作时遇到5位以上的乘法问题PLZ告诉我MASM611中至少8位乘法的解决方案
答案 0 :(得分:0)
对于无符号整数乘法,使用mul;签名使用imul。如果操作数是8位寄存器,则得到16位结果。
例如:
mov al, 3 mov cl, 5 mul cl
将15个放入斧头。
学习此页面:http://web.archive.org/web/20120414214754/http://www.arl.wustl.edu/~lockwood/class/cs306/books/artofasm/Chapter_6/CH06-2.html