2007-01-23 20:50:59 +01:00
|
|
|
#ifndef __ASM_PARISC_LINKAGE_H
|
|
|
|
#define __ASM_PARISC_LINKAGE_H
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-01-23 20:50:59 +01:00
|
|
|
#ifndef __ALIGN
|
|
|
|
#define __ALIGN .align 4
|
|
|
|
#define __ALIGN_STR ".align 4"
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|
2007-01-23 20:50:59 +01:00
|
|
|
|
|
|
|
/*
|
2007-01-23 23:32:10 +01:00
|
|
|
* In parisc assembly a semicolon marks a comment while a
|
|
|
|
* exclamation mark is used to seperate independend lines.
|
2007-01-23 20:50:59 +01:00
|
|
|
*/
|
|
|
|
#define ENTRY(name) \
|
2007-01-23 23:32:10 +01:00
|
|
|
.export name !\
|
2007-01-23 20:50:59 +01:00
|
|
|
ALIGN !\
|
|
|
|
name:
|
|
|
|
|
2007-01-23 23:32:10 +01:00
|
|
|
#ifdef CONFIG_64BIT
|
|
|
|
#define ENDPROC(name) \
|
|
|
|
END(name)
|
|
|
|
#else
|
|
|
|
#define ENDPROC(name) \
|
|
|
|
.type name, @function !\
|
|
|
|
END(name)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2007-01-23 20:50:59 +01:00
|
|
|
#endif /* __ASM_PARISC_LINKAGE_H */
|