summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/gba/include/asm_macros.h
blob: 19d3dc923f4a801a3e121289059b25aee74e16fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
 *  @file  asm_macros.h
 *
 *  This include file contains definitions related to the GBA BSP.
 */
/*
 *  RTEMS GBA BSP
 *
 *  Copyright (c) 2004  Markku Puro <markku.puro@kopteri.net>
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 *
 *  $Id$
 */

/*-----------------------------------------------------------------------------*
 * Macros
 *-----------------------------------------------------------------------------*/
#ifdef __asm__
#define PUBLIC_ARM_FUNCTION(label)   .global label ; \
                                     .type label, function ; \
                                     .arm ; \
                                     label:

#define PUBLIC_THUMB_FUNCTION(label) .global label ; \
                                     .type label, function ; \
                                     .thumb_func ; \
                                     label:

#define STATIC_ARM_FUNCTION(label)   .type label, function ; \
                                     .arm ; \
                                     label:

#define STATIC_THUMB_FUNCTION(label) .type label, function ; \
                                     .thumb_func ; \
                                     label:

#define OBJECT(label)                .global label ; \
                                     .type label, object ; \
                                     label:

#define STATIC_OBJECT(label)         .type label, object ; \
                                     label:

#define WEAK_OBJECT(label)           .weak label ; \
                                     .type label, object ; \
                                     label:

#define LABEL_END(label)             .L##label##_end: ; \
                                     .size label, .L##label##_end - label

#endif