1 /*
2  * Copyright (c) 2024 Intel Corporation
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/kernel.h>
8 #include <zephyr/sys/printk.h>
9 
main(void)10 int main(void)
11 {
12 	printk("Hello World from %s on %s, slot %s!\n",
13 		   MCUBOOT_HELLO_WORLD_FROM, CONFIG_BOARD,
14 		   DT_PROP(DT_CHOSEN(zephyr_code_partition), label));
15 }
16