18 lines
332 B
C
18 lines
332 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
|