From 9fad52df7dcfcf3f0149793ab45ba9dd7d48c4d6 Mon Sep 17 00:00:00 2001
From: VinceAle7082 <vinceale7082@gmail.com>
Date: Tue, 10 Sep 2024 18:44:01 +0200
Subject: [PATCH] Hello world from printf!

---
 src/bootloader/stage2/main.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/bootloader/stage2/main.c b/src/bootloader/stage2/main.c
index 0f59d68..7226896 100644
--- a/src/bootloader/stage2/main.c
+++ b/src/bootloader/stage2/main.c
@@ -5,9 +5,7 @@ void _cdecl cstart_(uint16_t bootDrive)
 {
     const char far* far_str = "far string";
 
-    puts("Hello world from the stage 2 of the bootloader written in C!\r\n");
-    printf("Formatted %% %c %s %ls\r\n", 'a', "string", far_str);
-    printf("Formatted %d %i %x %p %o %hd %hi %hhu %hhd\r\n", 1234, -5678, 0xdead, 0xbeef, 012345, (short)27, (short)-42, (unsigned char)20, (signed char)-10);
-    printf("Formatted %ld %lx %lld %llx\r\n", -100000000l, 0xdeadbeeful, 10200300400ll, 0xdeadbeeffeebdaedull);
+    printf("Hello world from printf!");
     for (;;);
+
 }