diff options
author | Marvin Borner | 2020-05-07 00:16:52 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-07 00:16:52 +0200 |
commit | 31767b532e69c5a63df0106fa08e137e3106a449 (patch) | |
tree | ea7a91347e030c0b120361b7d9975547a5af19d1 /src/kernel/multiboot.h | |
parent | 8083536f321ad8a12ad4668c2bf41a65c3e3b2f6 (diff) |
Some fixes here and there...
Also implemented serial console in userspace
Diffstat (limited to 'src/kernel/multiboot.h')
-rw-r--r-- | src/kernel/multiboot.h | 8 |
1 files changed, 5 insertions, 3 deletions
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 <stdint.h> + #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 { |