mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-16 10:07:12 -05:00
29 lines
620 B
C
29 lines
620 B
C
#ifndef _MSL_MATH_CONFIG_H
|
|
#define _MSL_MATH_CONFIG_H
|
|
|
|
#include <msl_t.h>
|
|
|
|
#if defined(__MIPS__)
|
|
#include <mips_math.h>
|
|
#elif defined(__m56800__)
|
|
#include <m56800_math.h>
|
|
#elif defined(__m56800E__)
|
|
#include <m56700_math.h>
|
|
#elif defined(__arm)
|
|
#include <math.ARM.h>
|
|
#elif defined(__POWERPC__)
|
|
#include <math_ppc.h>
|
|
#elif defined(__INTEL__)
|
|
#if defined(__MWERKS__) && __option(k63d)
|
|
#include <math_k63d.h>
|
|
#else
|
|
#include <math_x87.h>
|
|
#endif
|
|
#elif defined(__COLDFIRE__)
|
|
#include <math_e68k.h>
|
|
#elif defined(_ENTERPRISE_C_)
|
|
# include <math_StarCore.h>
|
|
#endif
|
|
|
|
#endif
|