diff options
author | Benji Dial <benji6283@gmail.com> | 2020-09-06 13:44:20 -0400 |
---|---|---|
committer | Benji Dial <benji6283@gmail.com> | 2020-09-06 13:44:20 -0400 |
commit | 73bb0e48640b842824a0b45fe4854df8ff7faf7b (patch) | |
tree | 077dec8a426db1e835393964da4736e91ff4c69d /src/user/hello/hello.c | |
parent | cbc85f6e897808b29e2f712156e2fa4d073d8277 (diff) | |
download | portland-os-73bb0e48640b842824a0b45fe4854df8ff7faf7b.tar.gz |
bugfixes, init program, hello world
Diffstat (limited to 'src/user/hello/hello.c')
-rw-r--r-- | src/user/hello/hello.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/user/hello/hello.c b/src/user/hello/hello.c new file mode 100644 index 0000000..65e23f0 --- /dev/null +++ b/src/user/hello/hello.c @@ -0,0 +1,5 @@ +#include <knob/user.h> + +void main() { + tell_user_sz("\nHello, world!\nThis is a userspace program that has been started by init."); +}
\ No newline at end of file |