Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. evanmars

    FPU problem

    I have this code using masm32: FLD Temp ;load Temp to FP stack PrintDec Temp ;DEBUGGER, print value of Temp (256) FLD Cr ;load Cr to FP stack FST Temp ;store ST(0) to Temp PrintDec Temp...
  2. evanmars

    number to text

    I've figured out this much on Floating-Point to Decimal: The most significant bit (bit31 for single precision or bit 63 for double precision) is the sign. 0 is +, 1 is -. For single precision (32 bit) the next 8 bits (bit30 - bit23) are the exponent. For double precision (64 bit) the next...
  3. evanmars

    number to text

    Thanks, I figured it out last night. divide the number by 10 add 48 to the remainder to convert to ascii store result in an array repeat above with quotient, storing result in array in descending elements btw, I'm using masm32.
  4. evanmars

    number to text

    how do I convert a number to text? i.e the number 1000 to "1000"

Part and Inventory Search

Back
Top