Hello World from printf and stage2

This commit is contained in:
Vincenzo Aleksey Brocato 2024-09-10 18:45:31 +02:00 committed by VinceAle7082
parent 5aac85b809
commit 19803f6b27

View File

@ -5,7 +5,8 @@ void _cdecl cstart_(uint16_t bootDrive)
{ {
const char far* far_str = "far string"; const char far* far_str = "far string";
printf("Hello world from printf!"); puts("Hello World from Stage2!");
printf("Hello World from printf!");
for (;;); for (;;);
} }