Simon Gardling c67c34e0ea
Add sys_hello and testbin/hellotest
`sys_hello` is a new syscall that just prints some text in the terminal.

`testbin/hellotest` is a userland binary that just calls `sys_hello`
2024-09-12 13:08:44 -04:00

9 lines
84 B
C

#include <unistd.h>
extern int hello(void);
int main() {
hello();
return 0;
}