git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
refactor: decouple i386 specific instruction invocation
[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 "i386/i386_asm.h"
13
#ifndef __ASM__
14
#include "i386/i386_abi.h"
15
#endif
16
#endif
17
18
/* clang-format on */
19
20
#endif /* __LUNAIX_ABI_H */