mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 19:36:47 +00:00
12 lines
183 B
C
12 lines
183 B
C
#pragma once
|
|
|
|
#define ARCH(arch) (defined(AK_ARCH_##arch) && AK_ARCH_##arch)
|
|
|
|
|
|
#ifdef __i386__
|
|
# define AK_ARCH_I386 1
|
|
#endif
|
|
|
|
#ifdef __x86_64__
|
|
# define AK_ARCH_X86_64 1
|
|
#endif |