ref: 1a98f20535a5007c3266d2731edd95b14aa3facd
dir: /src/asm/include/mymath.h/
#ifndef MATH_H #define MATH_H #include "types.h" void math_DefinePI( void ); void math_Print( SLONG i ); SLONG math_Sin( SLONG i ); SLONG math_Cos( SLONG i ); SLONG math_Tan( SLONG i ); SLONG math_ASin( SLONG i ); SLONG math_ACos( SLONG i ); SLONG math_ATan( SLONG i ); SLONG math_ATan2( SLONG i, SLONG j ); SLONG math_Mul( SLONG i, SLONG j ); SLONG math_Div( SLONG i, SLONG j ); #endif