summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/no_cpu/rtems/asm.h
diff options
context:
space:
mode:
authorMathew Kallada <matkallada@gmail.com>2012-12-29 07:34:18 -0600
committerJennifer Averett <jennifer.averett@oarcorp.com>2012-12-29 07:34:18 -0600
commitb98bb9e973c1f1292a24e090d03ddb9ea678ca21 (patch)
treeeec4a8c50e17f6084bac44167fc122dcab56d7f7 /cpukit/score/cpu/no_cpu/rtems/asm.h
parentcpukit avr: Replace dos eol with unix eol. (diff)
downloadrtems-b98bb9e973c1f1292a24e090d03ddb9ea678ca21.tar.bz2
score: Doxygen Clean Up Task #6
Diffstat (limited to 'cpukit/score/cpu/no_cpu/rtems/asm.h')
-rw-r--r--cpukit/score/cpu/no_cpu/rtems/asm.h18
1 files changed, 14 insertions, 4 deletions
diff --git a/cpukit/score/cpu/no_cpu/rtems/asm.h b/cpukit/score/cpu/no_cpu/rtems/asm.h
index 90708e3cfc..ee6d2644b1 100644
--- a/cpukit/score/cpu/no_cpu/rtems/asm.h
+++ b/cpukit/score/cpu/no_cpu/rtems/asm.h
@@ -1,17 +1,19 @@
/**
* @file rtems/asm.h
*
+ * @brief Addresses Incompatible Flavors Problems
+ *
* 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 %.
+ *
+ * NOTE: The spacing in the use of these macros
+ * is critical to them working as advertised.
*/
/*
- * NOTE: The spacing in the use of these macros
- * is critical to them working as advertised.
- *
* COPYRIGHT:
*
* This file is based on similar code found in newlib available
@@ -26,6 +28,13 @@
#ifndef _RTEMS_ASM_H
#define _RTEMS_ASM_H
+/**
+ * @defgroup no_cpuAsm Address Incompatible Flavors Problems
+ *
+ * @ingroup no_cpu
+ */
+/**@{*/
+
/*
* Indicate we are in an assembly file and get the basic CPU definitions.
*/
@@ -120,4 +129,5 @@
*/
#define EXTERN(sym) .globl SYM (sym)
-#endif
+/**@}*/
+#endif \ No newline at end of file