mirror of https://github.com/bsnes-emu/bsnes.git
12 lines
128 B
C++
12 lines
128 B
C++
|
#pragma once
|
||
|
|
||
|
namespace nall {
|
||
|
|
||
|
#if defined(__AVX2__)
|
||
|
#define SIMD 256
|
||
|
#define SIMD_AVX2
|
||
|
#include <immintrin.h>
|
||
|
#endif
|
||
|
|
||
|
}
|