summaryrefslogtreecommitdiff
path: root/kernel/kmain.c
diff options
context:
space:
mode:
authorJake Mannens <jake72360@gmail.com>2018-06-17 04:10:41 +1000
committerJake Mannens <jake72360@gmail.com>2018-06-17 04:10:41 +1000
commit6a6f31db520177d15a604ebd77ec68b7fc94dce6 (patch)
tree9b850c5eb1ad178e6fa1d063eecb0ea70c6778cf /kernel/kmain.c
parentfb24378c58a3bd5260920a1e9762c027fdbe5cec (diff)
Added basic implmementation of %x to vsprintf.
Diffstat (limited to 'kernel/kmain.c')
-rw-r--r--kernel/kmain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/kmain.c b/kernel/kmain.c
index 52c41d1..a854c12 100644
--- a/kernel/kmain.c
+++ b/kernel/kmain.c
@@ -8,5 +8,5 @@ void kmain(void) {
printf("Kernel booting...\n");
printf("Kernel booted!\n");
- printf("%s %s %s\n%s %s %s\n", "first", "second", "third", "fourth", "fifth", "sixth");
+ printf("Number: %x\n", 0x80);
}