Casting one or both variables when performing the multiply operation does not fix this.
Tried var word a = 5000 var word b = 200 var dword c -- tried this, but none of these produce the right output on the display c = a*b/1000 c = dword(a)*b/1000 c = a*dword(b)/1000 c = dword(a*b)/1000 -- You received this message because you are subscribed to the Google Groups "jallib" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/jallib. For more options, visit https://groups.google.com/d/optout.
