summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bsp_howto/initilization_code.rst2
-rw-r--r--bsp_howto/linker_script.rst2
2 files changed, 3 insertions, 1 deletions
diff --git a/bsp_howto/initilization_code.rst b/bsp_howto/initilization_code.rst
index 5899bb2..a69731e 100644
--- a/bsp_howto/initilization_code.rst
+++ b/bsp_howto/initilization_code.rst
@@ -350,7 +350,7 @@ copied into RAM, then the data section recopy is initiated
This code performs the following actions:
- copies the .data section from ROM to its location reserved in RAM (see
- `Initialized Data`_ for more details about this copy),
+ :ref:`Initialized Data` for more details about this copy),
- clear ``.bss`` section (all the non-initialized data will take value 0).
diff --git a/bsp_howto/linker_script.rst b/bsp_howto/linker_script.rst
index 8283695..9fe046b 100644
--- a/bsp_howto/linker_script.rst
+++ b/bsp_howto/linker_script.rst
@@ -299,6 +299,8 @@ BSP This file can be found at $BSP340_ROOT/startup/linkcmds.
__WorkspaceBase = .;
} >ram
+.. _Initialized Data:
+
Initialized Data
================