标签: assembly emu8086 x87
我需要在emu8086程序集中使用带浮点数的数字
我尝试使用fldpi指令,但是它告诉我错误的声明
org 100h include "emu8086.inc" ww dd 5.2 lea bx,ww mov cx,[bx] mov ax,10 mul cx call print_num