This website requires JavaScript.
Explore
Help
Sign In
Sinipelto
/
banan-os
forked from
Bananymous/banan-os
Watch
1
Star
0
Fork
You've already forked banan-os
0
Code
Pull Requests
Activity
b38989d594
banan-os
/
userspace
/
test.c
8 lines
69 B
C
Raw
Normal View
History
Unescape
Escape
Kernel: Usespace programs are now ran through ELF files only 64 bit elf files are supported for now.
2023-04-22 15:35:32 +03:00
#
include
<stdio.h>
LibELF: Start implementing elf library
2023-04-12 22:20:18 +03:00
int
main
(
)
{
Kernel: Usespace programs are now ran through ELF files only 64 bit elf files are supported for now.
2023-04-22 15:35:32 +03:00
puts
(
"
Hello World!
"
)
;
LibELF: Start implementing elf library
2023-04-12 22:20:18 +03:00
return
0
;
}