2007-01-24 03:50:59 +08:00
|
|
|
#ifndef __ASM_PARISC_LINKAGE_H
|
|
|
|
#define __ASM_PARISC_LINKAGE_H
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-01-24 03:50:59 +08:00
|
|
|
#ifndef __ALIGN
|
|
|
|
#define __ALIGN .align 4
|
|
|
|
#define __ALIGN_STR ".align 4"
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
2007-01-24 03:50:59 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* In parisc assembly a semicolon marks a comment.
|
|
|
|
* Because of that we use an exclamation mark to seperate independend lines.
|
|
|
|
*/
|
|
|
|
#define ENTRY(name) \
|
|
|
|
.globl name !\
|
|
|
|
ALIGN !\
|
|
|
|
name:
|
|
|
|
|
|
|
|
#endif /* __ASM_PARISC_LINKAGE_H */
|