Bellerofont
Programmer
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 killing me this cuz i can't find it anywhere
plz help
void squareroot(int intA, float Result)
{
asm{
finit
mov ax,intA
mov ss,ax
fsqrt //Compute sqrt(intA).
fstsw ax
mov Result,ax
}
cout<<"Square root of: "<<intA<<"="<<Result;
getch();
asm{
JMP End
}
End:
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 killing me this cuz i can't find it anywhere
plz help
void squareroot(int intA, float Result)
{
asm{
finit
mov ax,intA
mov ss,ax
fsqrt //Compute sqrt(intA).
fstsw ax
mov Result,ax
}
cout<<"Square root of: "<<intA<<"="<<Result;
getch();
asm{
JMP End
}
End: