Sign in
pigweed
/
third_party
/
github
/
zephyrproject-rtos
/
zephyr
/
fecf909a2a6f9c6d220168d697efc8245c01f43e
/
.
/
tests
/
boot
/
uefi
/
src
/
main.c
blob: 2f51ac388593de7c13f9eeb4fd7c31cad4b43e0c [
file
] [
log
] [
blame
]
/*
* Copyright (c) 2012-2014 Wind River Systems, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include
<zephyr/kernel.h>
#include
<zephyr/sys/printk.h>
int
main
(
void
)
{
printk
(
"Hello World! %s\n"
,
CONFIG_BOARD
);
return
0
;
}