├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── schedule.yml ├── .gitignore ├── .travis.yml ├── COPYING ├── README.md ├── appveyor.yml ├── lto.c ├── make.sh ├── make_w32.cmd ├── make_w64.cmd ├── module.c ├── module.h ├── my_types.h ├── osal_dynamiclib.h ├── osal_dynamiclib_unix.c ├── osal_dynamiclib_win32.c ├── projects ├── msvc │ ├── mupen64plus-rsp-cxd4.vcxproj │ └── mupen64plus-rsp-cxd4.vcxproj.filters └── unix │ └── Makefile ├── rsp.h ├── rsp_api_export.ver ├── sse2neon └── SSE2NEON.h ├── su.c ├── su.h └── vu ├── add.c ├── add.h ├── divide.c ├── divide.h ├── logical.c ├── logical.h ├── multiply.c ├── multiply.h ├── pack.h ├── select.c ├── select.h ├── vu.c └── vu.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/schedule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/.github/workflows/schedule.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/appveyor.yml -------------------------------------------------------------------------------- /lto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/lto.c -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/make.sh -------------------------------------------------------------------------------- /make_w32.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/make_w32.cmd -------------------------------------------------------------------------------- /make_w64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/make_w64.cmd -------------------------------------------------------------------------------- /module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/module.c -------------------------------------------------------------------------------- /module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/module.h -------------------------------------------------------------------------------- /my_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/my_types.h -------------------------------------------------------------------------------- /osal_dynamiclib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/osal_dynamiclib.h -------------------------------------------------------------------------------- /osal_dynamiclib_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/osal_dynamiclib_unix.c -------------------------------------------------------------------------------- /osal_dynamiclib_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/osal_dynamiclib_win32.c -------------------------------------------------------------------------------- /projects/msvc/mupen64plus-rsp-cxd4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/projects/msvc/mupen64plus-rsp-cxd4.vcxproj -------------------------------------------------------------------------------- /projects/msvc/mupen64plus-rsp-cxd4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/projects/msvc/mupen64plus-rsp-cxd4.vcxproj.filters -------------------------------------------------------------------------------- /projects/unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/projects/unix/Makefile -------------------------------------------------------------------------------- /rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/rsp.h -------------------------------------------------------------------------------- /rsp_api_export.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/rsp_api_export.ver -------------------------------------------------------------------------------- /sse2neon/SSE2NEON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/sse2neon/SSE2NEON.h -------------------------------------------------------------------------------- /su.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/su.c -------------------------------------------------------------------------------- /su.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/su.h -------------------------------------------------------------------------------- /vu/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/vu/add.c -------------------------------------------------------------------------------- /vu/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/vu/add.h -------------------------------------------------------------------------------- /vu/divide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/vu/divide.c -------------------------------------------------------------------------------- /vu/divide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/vu/divide.h -------------------------------------------------------------------------------- /vu/logical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/vu/logical.c -------------------------------------------------------------------------------- /vu/logical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/vu/logical.h -------------------------------------------------------------------------------- /vu/multiply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/vu/multiply.c -------------------------------------------------------------------------------- /vu/multiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/vu/multiply.h -------------------------------------------------------------------------------- /vu/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/vu/pack.h -------------------------------------------------------------------------------- /vu/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/vu/select.c -------------------------------------------------------------------------------- /vu/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/vu/select.h -------------------------------------------------------------------------------- /vu/vu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/vu/vu.c -------------------------------------------------------------------------------- /vu/vu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mupen64plus/mupen64plus-rsp-cxd4/HEAD/vu/vu.h --------------------------------------------------------------------------------