1 /* 2 * Copyright (c) 2022 Nordic Semiconductor 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/kernel.h> 8 #include <zephyr/linker/linker-defs.h> 9 main(void)10int main(void) 11 { 12 printk("Address of sample %p\n", (void *)__rom_region_start); 13 printk("Hello sysbuild with mcuboot! %s\n", CONFIG_BOARD); 14 return 0; 15 } 16