NaN MASM Error?

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
Topic archived. No new replies allowed.