You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
286 B
19 lines
286 B
17 years ago
|
#ifndef _ASM_X86_ASM_H
|
||
|
#define _ASM_X86_ASM_H
|
||
|
|
||
|
#ifdef CONFIG_X86_32
|
||
|
/* 32 bits */
|
||
|
|
||
|
# define _ASM_PTR " .long "
|
||
|
# define _ASM_ALIGN " .balign 4 "
|
||
|
|
||
|
#else
|
||
|
/* 64 bits */
|
||
|
|
||
|
# define _ASM_PTR " .quad "
|
||
|
# define _ASM_ALIGN " .balign 8 "
|
||
|
|
||
|
#endif /* CONFIG_X86_32 */
|
||
|
|
||
|
#endif /* _ASM_X86_ASM_H */
|