1 /*
2  * Copyright 2022 NXP
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/kernel.h>
8 
9 /* Main entry point */
main(void)10 int main(void)
11 {
12 	printk("Swapped application booted on %s\n", CONFIG_BOARD);
13 	return 0;
14 }
15