diff options
author | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2010-02-03 09:36:29 -0500 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2010-02-03 09:36:29 -0500 |
commit | 1c21007bbcb62829b12dc7271fdbc183c4ca1aa2 (patch) | |
tree | 42147175eff5b4bf4ec2b109969d349ccb296b28 /include/asm.h | |
parent | fc001302538dea0e8a67afb732f2daa1f18358dd (diff) |
Add initial support x86-64 ASM header.
Diffstat (limited to 'include/asm.h')
-rw-r--r-- | include/asm.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/asm.h b/include/asm.h index a58622e..bc15fae 100644 --- a/include/asm.h +++ b/include/asm.h | |||
@@ -3,10 +3,11 @@ | |||
3 | #ifndef ASM_H | 3 | #ifndef ASM_H |
4 | #define ASM_H | 4 | #define ASM_H |
5 | 5 | ||
6 | #ifdef __i386__ | 6 | #if defined(__i386__) || defined(__x86_64__) |
7 | #include "asm_i386.h" | 7 | #include "asm_x86.h" |
8 | #endif | 8 | #endif |
9 | 9 | ||
10 | |||
10 | #ifdef __sparc__ | 11 | #ifdef __sparc__ |
11 | #include "asm_sparc.h" | 12 | #include "asm_sparc.h" |
12 | #endif | 13 | #endif |