From 19803f6b27d59540f32c6ad938bf157c4c55b293 Mon Sep 17 00:00:00 2001 From: VinceAle7082 Date: Tue, 10 Sep 2024 18:45:31 +0200 Subject: [PATCH] Hello World from printf and stage2 --- src/bootloader/stage2/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bootloader/stage2/main.c b/src/bootloader/stage2/main.c index 7226896..910554f 100644 --- a/src/bootloader/stage2/main.c +++ b/src/bootloader/stage2/main.c @@ -5,7 +5,8 @@ void _cdecl cstart_(uint16_t bootDrive) { const char far* far_str = "far string"; - printf("Hello world from printf!"); + puts("Hello World from Stage2!"); + printf("Hello World from printf!"); for (;;); }