1 /*
2  * Copyright (c) 2022 Intel Corporation
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/kernel.h>
8 
9 static uint32_t maybe_bss;
10 
reloc(void)11 void reloc(void)
12 {
13 	printk("Relocated code! %s location %p\n", __func__, reloc);
14 	printk("maybe_bss location: %p maybe_bss value: %u\n", &maybe_bss,
15 	       maybe_bss);
16 }
17