source: rtems/cpukit/score/cpu/unix/asm.h @ b8ed8a9f

4.104.114.84.95
Last change on this file since b8ed8a9f was b8ed8a9f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/21/04 at 08:25:23

2004-11-12 Ralf Corsepius <ralf.corsepius@…>

  • asm.h: Add doxygen preamble.
  • Property mode set to 100644
File size: 817 bytes
Line 
1/**
2 * @file rtems/asm.h
3 *
4 *  This include file attempts to address the problems
5 *  caused by incompatible flavors of assemblers and
6 *  toolsets.  It primarily addresses variations in the
7 *  use of leading underscores on symbols and the requirement
8 *  that register names be preceded by a %.
9 *
10 *  This file is a "just an incomplete stub" and provided for consistency
11 *  with other ports, only.
12 */
13
14/*
15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
17 *  http://www.rtems.com/license/LICENSE.
18 *
19 *  $Id$
20 */
21
22#ifndef __UNIX_ASM_h
23#define __UNIX_ASM_h
24
25/*
26 *  Indicate we are in an assembly file and get the basic CPU definitions.
27 */
28
29#ifndef ASM
30#define ASM
31#endif
32
33#include <rtems/score/cpuopts.h>
34#include <rtems/score/unix.h>
35
36#endif
Note: See TracBrowser for help on using the repository browser.