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 strongm 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. Bellerofont

    square root assembly and c++

    i've found the answer, and i've learned a lot about the assembly while looking for thx anyway and soz for bothering void square_root(int intA, float Result) { asm { fild intA fsqrt fst Result jmp End } End: cout<<Result; getch(); }
  2. Bellerofont

    square root assembly and c++

    Hi I'm new in assembly and was trying to get this program to work, it supposed to calculate the square root of any integer but i don't know how to load the ax into the stack, get the square root and return the value to the c++ variable, that was the closest i could come up with, it's really...

Part and Inventory Search

Back
Top