标签: assembly emu8086
我创建了这个8086程序来计算x ^ y,但它没有给我错误的输出。怎么了?
MOV AX,0001 MOV BX,[2500] MOV CX,[2502] pow: MUL BX DEC CX LOOP pow MOV [2504],AX HLT