1 /*++ NDK Version: 0095 2 3 Copyright (c) Alex Ionescu. All rights reserved. 4 5 Header Name: 6 7 asm.h 8 9 Abstract: 10 11 Portability header to choose the correct Architecture-specific header. 12 13 Author: 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) 24 // 25 // ARM and PPC ports don't use asm.h 26 // 27 #else 28 #error Unsupported Architecture 29 #endif 30