[PARISC] implement standard ENTRY(), END() and ENDPROC()
[linux-2.6/linux-2.6-openrd.git] / include / asm-parisc / linkage.h
blob9df3978f8a9b57c3058fb38eb4df56ac05231c5c
1 #ifndef __ASM_PARISC_LINKAGE_H
2 #define __ASM_PARISC_LINKAGE_H
4 #ifndef __ALIGN
5 #define __ALIGN .align 4
6 #define __ALIGN_STR ".align 4"
7 #endif
9 /*
10 * In parisc assembly a semicolon marks a comment.
11 * Because of that we use an exclamation mark to seperate independend lines.
13 #define ENTRY(name) \
14 .globl name !\
15 ALIGN !\
16 name:
18 #endif /* __ASM_PARISC_LINKAGE_H */