[NDK] Remove amd64/asm.h

Most definitions were either duplicated or unused. Move the remaining ones to amd64/ketypes.h. Actual asm definitions are autogenerated.
This commit is contained in:
Timo Kreuzer 2024-12-23 17:13:13 +01:00
parent 7d75bfb449
commit aee59404ce
3 changed files with 22 additions and 431 deletions

View file

@ -18,11 +18,9 @@ Author:
#if defined(_M_IX86)
#include <i386/asm.h>
#elif defined(_M_AMD64)
#include <amd64/asm.h>
#elif defined(_M_ARM) || defined(_M_PPC) || defined(_M_ARM64)
#elif defined(_M_AMD64) || defined(_M_ARM) || defined(_M_PPC) || defined(_M_ARM64)
//
// ARM and PPC ports don't use asm.h
// AMD64, ARM and PPC ports don't use asm.h
//
#else
#error Unsupported Architecture