diff options
author | Marvin Borner | 2019-11-23 01:02:19 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-23 01:02:19 +0100 |
commit | 945d1c9eb7a6520429ebf2f988ac6cc1d12ec75d (patch) | |
tree | 04907ea20b6965b610fa7d01b5f63787a7b37221 /src/kernel/graphics/vesa.h | |
parent | 45d9495e77dba212551ae9bc8e09b51e9ed6d324 (diff) |
Fixed almost every vesa memory bug
Diffstat (limited to 'src/kernel/graphics/vesa.h')
-rw-r--r-- | src/kernel/graphics/vesa.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/kernel/graphics/vesa.h b/src/kernel/graphics/vesa.h index 1e49cd0..c2a0501 100644 --- a/src/kernel/graphics/vesa.h +++ b/src/kernel/graphics/vesa.h @@ -54,7 +54,7 @@ struct vbe_info { * The CPUs response to the 0x4F01 call * Used to get information about a specific video mode code */ -struct vbe_mode_info { +struct vbe_mode_info_all { uint16_t attributes; uint8_t window_a; uint8_t window_b; @@ -92,6 +92,16 @@ struct vbe_mode_info { uint8_t reserved1[206]; } __attribute__ ((packed)); +struct vbe_mode_info { + uint16_t attributes; + uint16_t pitch; + uint16_t width; + uint16_t height; + uint8_t bpp; + uint8_t memory_model; + uint32_t framebuffer; +} __attribute__ ((packed)); + /** * Get the monitors EDID information * TODO: Add EDID/VBE resolution mode verification |