mirror of
https://github.com/libretro/bnes-libretro.git
synced 2024-11-30 12:00:45 +00:00
14 lines
208 B
C++
Executable File
14 lines
208 B
C++
Executable File
#ifndef NALL_DSP_HPP
|
|
#define NALL_DSP_HPP
|
|
|
|
#include <algorithm>
|
|
#ifdef __SSE__
|
|
#include <xmmintrin.h>
|
|
#endif
|
|
|
|
#define NALL_DSP_INTERNAL_HPP
|
|
#include <nall/dsp/core.hpp>
|
|
#undef NALL_DSP_INTERNAL_HPP
|
|
|
|
#endif
|