aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc
diff options
context:
space:
mode:
authorMarvin Borner2020-08-15 18:02:49 +0200
committerMarvin Borner2020-08-15 18:02:49 +0200
commit9a827eb5f6ff58bf801bc98bcb653876428ebe69 (patch)
tree6fd75fd29a2bd55fd4e1ebb7271176abb3936115 /kernel/inc
parent9f16b032d38613ca95e321e1d1e652c43129c68b (diff)
Removed vesa from kernel
Diffstat (limited to 'kernel/inc')
-rw-r--r--kernel/inc/boot.h4
-rw-r--r--kernel/inc/vesa.h57
2 files changed, 2 insertions, 59 deletions
diff --git a/kernel/inc/boot.h b/kernel/inc/boot.h
index 1a41c32..c1d9288 100644
--- a/kernel/inc/boot.h
+++ b/kernel/inc/boot.h
@@ -2,9 +2,9 @@
// This file specifies the structs passed by the bootloader
#include <def.h>
-#include <vesa.h>
+struct vid_info *boot_passed;
struct vid_info {
u32 mode;
- struct vbe *info;
+ u32 *vbe;
};
diff --git a/kernel/inc/vesa.h b/kernel/inc/vesa.h
deleted file mode 100644
index e34cdc0..0000000
--- a/kernel/inc/vesa.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// MIT License, Copyright (c) 2020 Marvin Borner
-
-#ifndef VBE_H
-#define VBE_H
-
-#include <def.h>
-
-struct vbe {
- u16 attributes;
- u8 window_a;
- u8 window_b;
- u16 granularity;
- u16 window_size;
- u16 segment_a;
- u16 segment_b;
- u32 win_func_ptr;
- u16 pitch;
- u16 width;
- u16 height;
- u8 w_char;
- u8 y_char;
- u8 planes;
- u8 bpp;
- u8 banks;
- u8 memory_model;
- u8 bank_size;
- u8 image_pages;
- u8 reserved0;
-
- u8 red_mask;
- u8 red_position;
- u8 green_mask;
- u8 green_position;
- u8 blue_mask;
- u8 blue_position;
- u8 reserved_mask;
- u8 reserved_position;
- u8 direct_color_attributes;
-
- u32 framebuffer;
- u32 off_screen_mem_off;
- u16 off_screen_mem_size;
- u8 reserved1[206];
-};
-
-struct vbe *vbe;
-int vbe_width;
-int vbe_height;
-int vbe_bpl;
-int vbe_pitch;
-u8 *fb;
-
-void vesa_fill(const u32 color[3]);
-void vesa_set_pixel(u16 x, u16 y, const u32 color[3]);
-void vesa_init(struct vbe *info);
-
-#endif