有人可以给我一些关于如何在汇编(MASM)中将浮点舍入到最接近的 .001 的提示吗?我有 2 个整数。我需要将商显示为浮点数(num_1 / num_2)。我得到了浮点算术部分,但我不知道如何对结果进行舍入。非常感谢任何建议!
;calculate the quotient as a floating-point number
fild num_1
fidiv num_2
roundps
;display the quotient as a floating-point number
call WriteFloat
call CrLf