ReactOS 0.4.15-dev-8039-g69ebfd6
asm.h
Go to the documentation of this file.
1/*++ NDK Version: 0095
2
3Copyright (c) Alex Ionescu. All rights reserved.
4
5Header Name:
6
7 asm.h
8
9Abstract:
10
11 Portability header to choose the correct Architecture-specific header.
12
13Author:
14
15 Alex Ionescu (alex.ionescu@reactos.com) 06-Oct-2004
16
17--*/
18
19#if defined(_M_IX86)
20#include <i386/asm.h>
21#elif defined(_M_AMD64)
22#include <amd64/asm.h>
23#elif defined(_M_ARM) || defined(_M_PPC) || defined(_M_ARM64)
24//
25// ARM and PPC ports don't use asm.h
26//
27#else
28#error Unsupported Architecture
29#endif