From 38610cd06dc0b5a3a4ee46f5fe7c341191aa2bc1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 21 Dec 2019 12:25:14 +0100 Subject: Some userspace improvements GAS is bad, NASM is awesome. --- src/userspace/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/userspace/main.c') diff --git a/src/userspace/main.c b/src/userspace/main.c index 63ce8f4..982a5ff 100644 --- a/src/userspace/main.c +++ b/src/userspace/main.c @@ -11,10 +11,10 @@ int32_t starts_with(const char *a, const char *b) void user_main() { - char hello[] = "> Successfully switched to usermode!\n"; - syscall_write(hello); + printf("> Successfully switched to usermode!"); // init_framebuffer(); + writec((char) strlen("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")); while (1) { char *input = readline(); -- cgit v1.2.3