From: Duje Mihanović <duje.mihanovic@skole.hr>
Date: Wed, 8 Sep 2021 08:43:37 +0000 (+0200)
Subject: Better gitignore and tidier string
X-Git-Tag: 0.1.0~22
X-Git-Url: https://git.dujemihanovic.xyz/?a=commitdiff_plain;h=2d2187830c156e9c36e70fb7dbe4b05dfc09a255;p=nameless-os.git

Better gitignore and tidier string
---

diff --git a/.gitignore b/.gitignore
index 735084c..76d7ba6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
 toolchain/
 boot
 boot.img
-kernel/kernel.bin
-kernel/*.o
+**/*.o
+**/*.bin
diff --git a/kernel/kernel.c b/kernel/kernel.c
index c0ecb80..1e27a1b 100644
--- a/kernel/kernel.c
+++ b/kernel/kernel.c
@@ -1,14 +1,16 @@
 #include <tty.h>
 
+const char *string = "Hello there!\n\n\
+Hopefully your machine manages to print this text.\n\
+If it did, that's great news because I managed to write a partial VGA driver.\n\n\
+Right now, the short-term roadmap is as follows:\n\n\
+* Enable interrupts using the PIC.\n\
+* Write a driver for the Intel 8042 PS/2 controller so the OS can receive keystrokes.\n\
+* A working i8042 driver will also aid in enabling A20 Gate, which should be done ASAP so the OS can address odd (as in odd/even number) megabytes.\n\n\
+Feel free to mess around with the code, although I doubt it will be very interesting at the moment.\n";
+
 void _start(void)
 {
 	screen_clear();
-	kprint("Hello there!\n\n\
-			Hopefully your machine manages to print this text.\n\
-			If it did, that's great news because I managed to write a partial VGA driver.\n\n\
-			Right now, the short-term roadmap is as follows:\n\n\
-			    * Enable interrupts using the PIC.\n\
-				* Write a driver for the Intel 8042 PS/2 controller so the OS can receive keystrokes.\n\
-				* A working i8042 driver will also aid in enabling A20 Gate, which should be done ASAP so the OS can address odd (as in odd/even number) megabytes.\n\n\
-			Feel free to mess around with the code, although I doubt it will be very interesting at the moment.\n");
+	kprint(string);
 }