NaN MASM Error?
Mar 23, 2015 at 3:03am
So i receive this NaN error (notanumber) when i try to add 2 values of which are floats. How would i fix this error?
i have this as my info...
1 2 3 4 5 6 7 8 9 10 11 12 13
|
leftvalue REAL8 ? ;these ? values are actual large numbers so i assume overflow?
leftmidvalue REAL8 ?
calculate_left:
fld leftvalue
fld leftmidvalue
fadd
fst leftside
fld leftside
call WriteFloat
|
Last edited on Mar 23, 2015 at 3:05am
Topic archived. No new replies allowed.