Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我在 MASM611 中工作的 5 位以上的乘法有问题,请告诉我 MASM611 中至少 8 位乘法的解决方案
对于无符号整数乘法,使用 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