Code formatting
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Rafal Kupiec 2023-01-11 15:39:36 +01:00
parent beed5e0b51
commit 21abe0553a
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -17,29 +17,29 @@
/* Architecture specific definitions */
#if defined(__i386__) || defined(__i686__)
#define _ARCH i686
#define _ARCH_I686 1
#define _ARCH_NAME "32-bit x86"
#define _ARCH_IMAGE_MACHINE_TYPE 0x014C
#define _XT32 1
#define CACHE_ALIGNMENT 64
#define EFI_ERROR_MASK 0x80000000
#define MAXIMUM_PROCESSORS 32
#define MEMORY_ALIGNMENT 8
#define MM_USERPAGE_TABLES 1536
#define MM_VIRTUAL_PAGESIZE 20
#define _ARCH i686
#define _ARCH_I686 1
#define _ARCH_NAME "32-bit x86"
#define _ARCH_IMAGE_MACHINE_TYPE 0x014C
#define _XT32 1
#define CACHE_ALIGNMENT 64
#define EFI_ERROR_MASK 0x80000000
#define MAXIMUM_PROCESSORS 32
#define MEMORY_ALIGNMENT 8
#define MM_USERPAGE_TABLES 1536
#define MM_VIRTUAL_PAGESIZE 20
#elif defined(__amd64__) || defined(__x86_64__)
#define _ARCH amd64
#define _ARCH_AMD64 1
#define _ARCH_NAME "64-bit x86"
#define _ARCH_IMAGE_MACHINE_TYPE 0x8664
#define _XT64 1
#define CACHE_ALIGNMENT 64
#define EFI_ERROR_MASK 0x8000000000000000
#define MAXIMUM_PROCESSORS 256
#define MEMORY_ALIGNMENT 16
#define MM_USERPAGE_TABLES 4194304
#define MM_VIRTUAL_PAGESIZE 52
#define _ARCH amd64
#define _ARCH_AMD64 1
#define _ARCH_NAME "64-bit x86"
#define _ARCH_IMAGE_MACHINE_TYPE 0x8664
#define _XT64 1
#define CACHE_ALIGNMENT 64
#define EFI_ERROR_MASK 0x8000000000000000
#define MAXIMUM_PROCESSORS 256
#define MEMORY_ALIGNMENT 16
#define MM_USERPAGE_TABLES 4194304
#define MM_VIRTUAL_PAGESIZE 52
#else
#error Unknown architecture
#endif