This commit is contained in:
nub31
2025-09-03 15:23:43 +02:00
parent 020e09c4e1
commit ad879af3f9

View File

@@ -13,13 +13,13 @@ void entry(uint32_t magic, multiboot_info_t* info)
{ {
if (magic != 0x2BADB002) if (magic != 0x2BADB002)
{ {
printf("Multiboot magic does not match"); printf("Multiboot magic does not match\n");
panic(); panic();
} }
if (info == NULL) if (info == NULL)
{ {
printf("Multiboot info is NULL"); printf("Multiboot info is NULL\n");
panic(); panic();
} }