repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
soc/intel/xeon_sp/ibl: Update registers for reach bootable
[coreboot2.git]
/
payloads
/
libpayload
/
sample
/
arch_mock
/
hello.c
blob
5a96e42e757b520f2130a57e51d315b5d0e95fe7
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
/* Example file for libpayload. */
4
5
#include <libpayload-config.h>
6
#include <libpayload.h>
7
8
int
main
(
void
)
9
{
10
printf
(
"Hello world!
\n
"
);
11
halt
();
12
return
0
;
13
}