彙編語言實現功能(1)用循環累加實現乘法

問題1:編程計算2的2次方,結果存在ax中 分析:用2+2實現 assume cs:code code segment mov ax,2 add ax,ax ;實現程序的返回 mov ax,4c00h int 21h code ends end 問題2:編程實現2的12次方 分析:用loop實現 assume cs:code code segment mov ax
相關文章
相關標籤/搜索