You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
313 B
15 lines
313 B
/* |
|
* Copyright (c) 2022 Nordic Semiconductor |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#include <zephyr/kernel.h> |
|
#include <zephyr/linker/linker-defs.h> |
|
|
|
int main(void) |
|
{ |
|
printk("Address of sample %p\n", (void *)__rom_region_start); |
|
printk("Hello sysbuild with mcuboot! %s\n", CONFIG_BOARD); |
|
return 0; |
|
}
|
|
|