summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/bits/nt_atomic_inline_asm.h
blob: 59a3312dc3d8373ba57d5b16526eaf3ccda2369d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if defined(__X86_MODEL)
#if 	(__COMPILER__ == __GCC__)
#include "nt32/nt_atomic_i386_asm__gcc.h"
#elif	(__COMPILER__ == __MSVC__)
#include "nt64/nt_atomic_i386_asm__msvc.h"
#endif

#elif defined(__X86_64_MODEL)
#if 	(__COMPILER__ == __GCC__)
#include "nt64/nt_atomic_x86_64_asm__gcc.h"
#elif	(__COMPILER__ == __MSVC__)
#include "nt64/nt_atomic_x86_64_asm__msvc.h"
#endif

#endif