122b299d238f538a080604289c5f98614eff0583
[coreboot.git] / src / arch / i386 / include / arch / asm.h
1 #ifndef ASM_H
2 #define ASM_H
3
4 #define ASSEMBLER
5
6 /*
7  * Bootstrap code for the STPC Consumer
8  * Copyright (c) 1999 by Net Insight AB. All Rights Reserved.
9  *
10  */
11
12 #define I386_ALIGN_TEXT 0
13 #define I386_ALIGN_DATA 0
14
15 #define STATIC(x)       .align I386_ALIGN_TEXT; EXT(x): 
16 #define GLOBAL(x)       .globl EXT(x); STATIC(x)
17 #define ENTRY(x)        .text; GLOBAL(x)
18
19 #endif /* ASM_H */