Lines Matching +full:real +full:- +full:world
1 .. zephyr:code-sample:: llext-shell-loader
3 :relevant-api: llext_apis
21 .. zephyr-app-commands::
22 :zephyr-app: samples/subsys/llext/shell_loader
33 All the llext system related commands are available as sub-commands of llext
36 .. code-block:: console
39 llext - Loadable extension commands
52 A hello world C file can be found in tests/subsys/llext/hello_world/hello_world.c
61 .. code-block:: console
63 …$ arm-zephyr-eabi-gcc -mlong-calls -mthumb -c -o hello_world.elf tests/subsys/llext/hello_world/he…
64 $ arm-zephyr-eabi-objdump -r -d -x hello_world.elf
66 hello_world.elf: file format elf32-littlearm
131 $ xxd -p hello_world.elf | tr -d '\n'
135 .. code-block:: console
143 .. code-block:: console
146 hello world
149 … in the .text section with real memory addresses so that printk works as expected with the strings…