limine/common/protos/multiboot.h
cospplredman ba5c0004e6 fixed header guard names
made them more standard compliant
2024-03-20 03:06:55 +01:00

18 lines
328 B
C

#ifndef PROTOS__MULTIBOOT_H__
#define PROTOS__MULTIBOOT_H__
#include <stdint.h>
#include <lib/misc.h>
struct mb_reloc_stub {
char jmp[4];
uint32_t magic;
uint32_t entry_point;
uint32_t mb_info_target;
};
extern symbol multiboot_spinup_32;
extern symbol multiboot_reloc_stub, multiboot_reloc_stub_end;
#endif