summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/unix/asm.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-13 15:03:04 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-13 15:03:04 +0000
commitbd00319d3910d49faea67726998ae27cffe59b57 (patch)
tree5004175b21504bcfe3126e33f9ddfcd8aafe9409 /cpukit/score/cpu/unix/asm.h
parent2004-04-13 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-bd00319d3910d49faea67726998ae27cffe59b57.tar.bz2
2004-04-13 Ralf Corsepius <ralf_corsepius@rtems.org>
* asm.h: New (stub file. For consistency with other ports, only). * Makefile.am: Add asm.h.
Diffstat (limited to 'cpukit/score/cpu/unix/asm.h')
-rw-r--r--cpukit/score/cpu/unix/asm.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/cpukit/score/cpu/unix/asm.h b/cpukit/score/cpu/unix/asm.h
new file mode 100644
index 0000000000..820e1ec050
--- /dev/null
+++ b/cpukit/score/cpu/unix/asm.h
@@ -0,0 +1,33 @@
+/* asm.h
+ *
+ * This include file attempts to address the problems
+ * caused by incompatible flavors of assemblers and
+ * toolsets. It primarily addresses variations in the
+ * use of leading underscores on symbols and the requirement
+ * that register names be preceded by a %.
+ *
+ * This file is a "just an incomplete stub" and provided for consistency
+ * with other ports, only.
+ *
+ * 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$
+ */
+
+#ifndef __UNIX_ASM_h
+#define __UNIX_ASM_h
+
+/*
+ * Indicate we are in an assembly file and get the basic CPU definitions.
+ */
+
+#ifndef ASM
+#define ASM
+#endif
+
+#include <rtems/score/cpuopts.h>
+#include <rtems/score/unix.h>
+
+#endif