mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
11 lines
128 B
C++
11 lines
128 B
C++
#pragma once
|
|
|
|
namespace nall {
|
|
|
|
#if defined(__AVX2__)
|
|
#define SIMD 256
|
|
#define SIMD_AVX2
|
|
#include <immintrin.h>
|
|
#endif
|
|
|
|
}
|