blob: 9df3978f8a9b57c3058fb38eb4df56ac05231c5c [file] [log] [blame]
Helge Dellerc5e76552007-01-23 20:50:59 +01001#ifndef __ASM_PARISC_LINKAGE_H
2#define __ASM_PARISC_LINKAGE_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
Helge Dellerc5e76552007-01-23 20:50:59 +01004#ifndef __ALIGN
5#define __ALIGN .align 4
6#define __ALIGN_STR ".align 4"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#endif
Helge Dellerc5e76552007-01-23 20:50:59 +01008
9/*
10 * In parisc assembly a semicolon marks a comment.
11 * Because of that we use an exclamation mark to seperate independend lines.
12 */
13#define ENTRY(name) \
14 .globl name !\
15 ALIGN !\
16name:
17
18#endif /* __ASM_PARISC_LINKAGE_H */