From 31767b532e69c5a63df0106fa08e137e3106a449 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 7 May 2020 00:16:52 +0200 Subject: Some fixes here and there... Also implemented serial console in userspace --- src/kernel/multiboot.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/kernel/multiboot.h') diff --git a/src/kernel/multiboot.h b/src/kernel/multiboot.h index 19ca504..8570e69 100644 --- a/src/kernel/multiboot.h +++ b/src/kernel/multiboot.h @@ -18,6 +18,8 @@ * IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#include + #ifndef MULTIBOOT_HEADER #define MULTIBOOT_HEADER 1 @@ -88,9 +90,9 @@ #ifndef ASM_FILE -typedef unsigned char multiboot_u8; -typedef unsigned short multiboot_u16; -typedef unsigned int multiboot_u32; +typedef u8 multiboot_u8; +typedef u16 multiboot_u16; +typedef u32 multiboot_u32; typedef unsigned long long multiboot_u64; struct multiboot_header { -- cgit v1.2.3