From b2880945ae17ad857bd425540acd3dc75b2cff6b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 6 Jul 2021 22:07:04 +0200 Subject: Basic multiboot 1 detection and verification --- example/mb1/main.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 example/mb1/main.c (limited to 'example/mb1/main.c') diff --git a/example/mb1/main.c b/example/mb1/main.c new file mode 100644 index 0000000..0174803 --- /dev/null +++ b/example/mb1/main.c @@ -0,0 +1,16 @@ +// MIT License, Copyright (c) 2021 Marvin Borner + +typedef unsigned int u32; + +int kernel_main(u32 magic, u32 addr, u32 esp); // Decl +int kernel_main(u32 magic, u32 addr, u32 esp) +{ + (void)magic; + (void)addr; + (void)esp; + + while (1) + ; + + return 1; +} -- cgit v1.2.3