diff options
| author | Miguel <m.i@gmx.at> | 2018-09-09 17:28:59 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-09-09 17:28:59 +0200 |
| commit | 4cda542d863839c5b0e026ccee297ca5ff3dd9cd (patch) | |
| tree | 7b8f7734f8f982df82b5c784386232e35a7ced44 /kernel/multiboot.h | |
| parent | 9a4b35fd5a32490f8f15b48f978e7b1fbfdceb2a (diff) | |
switched to apic/ioapic finally
Diffstat (limited to 'kernel/multiboot.h')
| -rw-r--r-- | kernel/multiboot.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/kernel/multiboot.h b/kernel/multiboot.h index 49f239f..09f7286 100644 --- a/kernel/multiboot.h +++ b/kernel/multiboot.h @@ -3,9 +3,13 @@ * * This Structures ars defined by the multiboot specification and you will * get them from your bootloader. + * + * Ref + * --- + * https://www.gnu.org/software/grub/manual/multiboot/multiboot.html#Boot-information-format + * */ -//# https://www.gnu.org/software/grub/manual/multiboot/multiboot.html#Boot-information-format #ifndef MULTIBOOT_H #define MULTIBOOT_H @@ -64,6 +68,6 @@ typedef struct multiboot_mod_struct }multiboot_mod; -multiboot_information* get_multiboot(uint32_t eax, uint32_t ebx); +multiboot_information* multiboot_read(uint32_t eax, uint32_t ebx); #endif |
