aboutsummaryrefslogtreecommitdiffstats
path: root/ports/ARM7
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-09 22:18:39 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-09 22:18:39 +0000
commit1c1d5129c5d0aa9c52c236f96003aee04cc03d9e (patch)
tree540140bcadfa68dd8856212f74159da143de5af0 /ports/ARM7
parentc4c192b0273454e81cd9cb91441c747abaabf6ec (diff)
downloadChibiOS-1c1d5129c5d0aa9c52c236f96003aee04cc03d9e.tar.gz
ChibiOS-1c1d5129c5d0aa9c52c236f96003aee04cc03d9e.tar.bz2
ChibiOS-1c1d5129c5d0aa9c52c236f96003aee04cc03d9e.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@751 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports/ARM7')
-rw-r--r--ports/ARM7/port.dox8
1 files changed, 4 insertions, 4 deletions
diff --git a/ports/ARM7/port.dox b/ports/ARM7/port.dox
index 016d2aceb..f73b85875 100644
--- a/ports/ARM7/port.dox
+++ b/ports/ARM7/port.dox
@@ -149,13 +149,13 @@
*
* <h2>Startup Process</h2>
* The startup process, as implemented, is the following:
- * -# Initialize the various stacks assigning them the sizes defined in the
+ * -# The stacks are initialized by assigning them the sizes defined in the
* linker script (usually named @p ch.ld). Stack areas are allocated from
* the highest RAM location downward.
* -# The ARM state is switched to System with both IRQ and FIQ sources
* disabled.
- * -# An early initialization routine @p hwinit0 is invoked, if the symbol not
- * defined then an empty default routine is executed (weak symbol).
+ * -# An early initialization routine @p hwinit0 is invoked, if the symbol is
+ * not defined then an empty default routine is executed (weak symbol).
* -# DATA and BSS segments are initialized.
* -# A late initialization routine @p hwinit1 is invoked, if the symbol not
* defined then an empty default routine is executed (weak symbol).<br>
@@ -175,7 +175,7 @@
* - @p __fiq_stack_size__ FIQ service stack size.
* - @p __irq_stack_size__ IRQ service stack size.
* - @p __svc_stack_size__ SVC service stack size.
- * - @p __sys_stack_size__ System/User stack size. This is the stack used
+ * - @p __sys_stack_size__ System/User stack size. This is the stack area used
* by the @p main() function.
* - @p _textdata address of the data segment source read only data.
* - @p _data data segment start location.