Lines Matching +full:code +full:- +full:0
1 .. zephyr:code-sample:: code_relocation_nocopy
2 :name: Code relocation nocopy
4 Relocate code, data, or bss sections using a custom linker script.
8 A simple example that demonstrates how relocation of code, data or bss sections
11 Differently from the code relocation sample, this sample is relocating the
12 content of the ext_code.c file to a different FLASH section and the code is XIP
13 directly from there without the need to copy / relocate the code. All other code
20 mapped to 0x10000000.
24 .. zephyr-app-commands::
25 :zephyr-app: samples/application_development/code_relocation_nocopy
30 STM32F769I-Discovery platform instructions
34 to 0x90000000.
36 .. zephyr-app-commands::
37 :zephyr-app: samples/application_development/code_relocation_nocopy
46 to 0x70000000.
48 .. zephyr-app-commands::
49 :zephyr-app: samples/application_development/code_relocation_nocopy
57 .. code-block:: console
59 *** Booting Zephyr OS build v3.0.0-rc3-25-g0df32cec1ff2 ***
60 Address of main function 0x4f9
61 Address of function_in_ext_flash 0x10000001
62 Address of var_ext_sram_data 0x200000a0 (10)
63 Address of function_in_sram 0x20000001
64 Address of var_sram_data 0x200000a4 (10)