2014-04-12 17:25:23 +00:00
|
|
|
/******************************************************************************\
|
2017-02-17 12:50:20 +00:00
|
|
|
* Project: Module Subsystem Interface to SP Interpreter Core *
|
2014-04-12 17:25:23 +00:00
|
|
|
* Authors: Iconoclast *
|
2017-02-17 12:50:20 +00:00
|
|
|
* Release: 2016.03.23 *
|
2014-04-12 17:25:23 +00:00
|
|
|
* License: CC0 Public Domain Dedication *
|
|
|
|
* *
|
|
|
|
* To the extent possible under law, the author(s) have dedicated all copyright *
|
|
|
|
* and related and neighboring rights to this software to the public domain *
|
|
|
|
* worldwide. This software is distributed without any warranty. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the CC0 Public Domain Dedication along *
|
|
|
|
* with this software. *
|
|
|
|
* If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. *
|
|
|
|
\******************************************************************************/
|
2014-12-27 18:01:37 +00:00
|
|
|
|
2017-02-17 12:50:20 +00:00
|
|
|
#define LIBRETRO
|
2016-02-24 19:53:04 +00:00
|
|
|
|
2017-02-17 12:50:20 +00:00
|
|
|
#if defined(USE_SSE2NEON) && defined(__ARM_NEON__)
|
|
|
|
#include "sse2neon/SSE2NEON.h"
|
|
|
|
#define ARCH_MIN_SSE2
|
2016-08-13 12:27:54 +00:00
|
|
|
#endif
|
2016-08-06 20:19:07 +00:00
|
|
|
|
2017-02-17 12:50:20 +00:00
|
|
|
#include "vu/add.c"
|
|
|
|
#include "vu/divide.c"
|
|
|
|
#include "vu/logical.c"
|
|
|
|
#include "vu/multiply.c"
|
|
|
|
#include "vu/select.c"
|
|
|
|
#include "vu/vu.c"
|
|
|
|
#include "su.c"
|
|
|
|
#include "module.c"
|
2016-02-24 19:53:04 +00:00
|
|
|
|
2017-02-17 12:50:20 +00:00
|
|
|
unsigned char rsp_conf[32];
|