1 /*
2  * Copyright (c) 2021 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/kernel.h>
8 
9 extern void wakeup_cpu1(void);
10 
main(void)11 int main(void)
12 {
13 	/* Simply wake-up the remote core */
14 	wakeup_cpu1();
15 
16 	while (1) {
17 	}
18 	return 0;
19 }
20