repo.or.cz
/
mascara-docs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* better
[mascara-docs.git]
/
amd64
/
bareMetalOS-0.5.2
/
pure64.boot0
/
kernel_c++
/
kernel64.cpp
blob
472274ddeff65ee9b5e2e6bd9bdb1a54265b0ad5
1
/* 64-bit C++ example kernel for Pure64 */
2
/* Written by Ian Seyler (www.returninfinity.com) */
3
4
5
int
main
()
6
{
7
while
(
1
)
8
{
9
// infinite loop of doing nothing
10
}
11
return
(
0
);
12
};
13
14