This is stupid for those who know a little bit maths.
But this could be a "trick" for those who are ignorants in maths and want a Root(a,n) funtion.
As an assignment from Einander, i began to do an ASM Procedure to return the "n" root of a number value.
I realized that Pow(a.f,1/n.f) is just the wanted function.
Code: Select all
Procedure.f Root(a.f, n.f)
ProcedureReturn Pow(a, 1/n)
EndProcedure

