refactor: elf parsing utility and exec related
[lunaix-os.git] / lunaix-os / includes / arch / abi.h
1 #ifndef __LUNAIX_ABI_H
2 #define __LUNAIX_ABI_H
3
4 /* clang-format off */
5
6 #if 0
7 // templates, new arch should implements these templates
8 #define store_retval(retval)
9 #endif
10
11 #ifdef __ARCH_IA32
12     #include "x86/i386_asm.h"
13     #ifndef __ASM__
14         #include "x86/i386_abi.h"
15     #endif
16 #endif
17
18 /* clang-format on */
19
20 #endif /* __LUNAIX_ABI_H */