blob: 9df3978f8a9b57c3058fb38eb4df56ac05231c5c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef __ASM_PARISC_LINKAGE_H
#define __ASM_PARISC_LINKAGE_H
#ifndef __ALIGN
#define __ALIGN .align 4
#define __ALIGN_STR ".align 4"
#endif
/*
* 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 */
|