diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-04 21:17:02 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-04 21:17:02 +0000 |
commit | 7a74a8aca5c7edf2f86015acab8fb7297c670072 (patch) | |
tree | 66cfb09243ee6513550012591e2b149db26bb1e4 /ports | |
parent | 28c01b87044331834e27db841f11e440f658c263 (diff) | |
download | ChibiOS-7a74a8aca5c7edf2f86015acab8fb7297c670072.tar.gz ChibiOS-7a74a8aca5c7edf2f86015acab8fb7297c670072.tar.bz2 ChibiOS-7a74a8aca5c7edf2f86015acab8fb7297c670072.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@718 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports')
-rw-r--r-- | ports/ARM7/chcoreasm.s | 2 | ||||
-rw-r--r-- | ports/ARM7/crt0.s | 2 | ||||
-rw-r--r-- | ports/ARMCM3/crt0.s | 4 |
3 files changed, 7 insertions, 1 deletions
diff --git a/ports/ARM7/chcoreasm.s b/ports/ARM7/chcoreasm.s index 9c24de407..932d39c04 100644 --- a/ports/ARM7/chcoreasm.s +++ b/ports/ARM7/chcoreasm.s @@ -23,6 +23,7 @@ * @addtogroup ARM7_CORE
* @{
*/
+/** @cond never */
#include <chconf.h>
@@ -229,4 +230,5 @@ jmpr4: bx r4
#endif /* !THUMB_NO_INTERWORKING */
+/** @endcond */
/** @} */
diff --git a/ports/ARM7/crt0.s b/ports/ARM7/crt0.s index b910293b9..d066ee478 100644 --- a/ports/ARM7/crt0.s +++ b/ports/ARM7/crt0.s @@ -23,6 +23,7 @@ * @addtogroup ARM7_CORE
* @{
*/
+/** @cond never */
.set MODE_USR, 0x10
.set MODE_FIQ, 0x11
@@ -193,4 +194,5 @@ hwinit0: hwinit1:
bx lr
+/** @endcond */
/** @} */
diff --git a/ports/ARMCM3/crt0.s b/ports/ARMCM3/crt0.s index 72b104a0c..18c987f18 100644 --- a/ports/ARMCM3/crt0.s +++ b/ports/ARMCM3/crt0.s @@ -19,10 +19,11 @@ /** * @file ports/ARMCM3/crt0.s - * @brief Generic ARM Xortex-M3 startup file for ChibiOS/RT. + * @brief Generic ARM Cortex-M3 startup file for ChibiOS/RT. * @addtogroup ARMCM3_CORE * @{ */ +/** @cond never */ .set CONTROL_MODE_PRIVILEGED, 0 .set CONTROL_MODE_UNPRIVILEGED, 1 @@ -115,4 +116,5 @@ hwinit0: hwinit1: bx lr +/** @endcond */ /** @} */ |