This website requires JavaScript.
Explore
Help
Sign In
noxos
/
kernel
Watch
4
Star
1
Fork
You've already forked kernel
0
Code
Issues
5
Pull Requests
Packages
Projects
Releases
Wiki
Activity
457bf6aa60
kernel
/
ramdisk
/
test.c
7 lines
93 B
C
Raw
Normal View
History
Unescape
Escape
feature (syscalls): implemented basic stdout printing
2023-04-21 11:45:58 +00:00
#
include
"nox/stdio.h"
feature (proc): got process page map isolation working, finally!
2023-03-07 18:22:46 +00:00
feature (syscalls): implemented basic stdout printing
2023-04-21 11:45:58 +00:00
void
_start
(
)
{
printf
(
"
hello libc
"
)
;
while
(
1
)
asm
(
"
hlt
"
)
;
feature (ELF): implemented ELF loading / segment mapping
2023-03-02 16:58:04 +00:00
}