1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/arch/multiboot.h

12 lines
233 B
C
Raw Normal View History

2017-11-01 04:37:39 -04:00
#ifndef KERNELMQ_INCLUDED_MULTIBOOT
#define KERNELMQ_INCLUDED_MULTIBOOT 1
2017-11-01 10:45:01 -04:00
struct KernelMQ_Multiboot_Info {
unsigned long magic;
unsigned long addr;
};
2017-11-01 10:45:01 -04:00
void print_multiboot_info(struct KernelMQ_Multiboot_Info info);
2017-11-01 04:37:39 -04:00
#endif