首页 > 其他 > 详细

FloatTest32 Example

时间:2016-11-02 18:11:15      阅读:269      评论:0      收藏:0      [点我收藏+]

Example Program The following example program pushes two floating-point values on
the FPU stack, displays it, inputs two values from the user, multiplies them, and displays their
product:

TITLE 32-bit Floating-Point I/O Test (floatTest32.asm)
INCLUDE Irvine32.inc
INCLUDE macros.inc
.data
first REAL8 123.456
second REAL8 10.0
third REAL8 ?
.code
main PROC
finit ; initialize FPU
; Push two floats and display the FPU stack.
fld first
fld second
call ShowFPUStack
; Input two floats and display their product.
mWrite "Please enter a real number: "
call ReadFloat
mWrite "Please enter a real number: "
call ReadFloat
fmul ST(0),ST(1) ; multiply
mWrite "Their product is: "
call WriteFloat
call Crlf
exit
main ENDP
END main

Sample input/output (user input shown in bold type):

技术分享

 

FloatTest32 Example

原文:http://www.cnblogs.com/dreamafar/p/6023492.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!