summaryrefslogtreecommitdiffstats
path: root/porting/cpu_init.rst
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2016-10-27 20:01:47 -0500
committerJoel Sherrill <joel@rtems.org>2016-10-27 20:01:47 -0500
commitb0f29772e22edbf3b2adf2e058fc445da4419e2c (patch)
treecf165860dd2ba7e0c94f48928c1aeb2a5c475f1a /porting/cpu_init.rst
parentbsp_howto: Fix code-block markup (diff)
downloadrtems-docs-b0f29772e22edbf3b2adf2e058fc445da4419e2c.tar.bz2
porting: Fix code-block markup
Diffstat (limited to '')
-rw-r--r--porting/cpu_init.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/porting/cpu_init.rst b/porting/cpu_init.rst
index 39a27ed..c4f7e7d 100644
--- a/porting/cpu_init.rst
+++ b/porting/cpu_init.rst
@@ -16,7 +16,7 @@ Initializing the CPU
====================
The _CPU_Initialize routine performs processor dependent initialization.
-.. code:: c
+.. code-block:: c
void _CPU_Initialize(
void (*thread_dispatch) /* may be ignored */
@@ -32,7 +32,7 @@ limitation on these systems.
If you encounter this problem save the entry point in a CPU dependent
variable as shown below:
-.. code:: c
+.. code-block:: c
_CPU_Thread_dispatch_pointer = thread_dispatch;