blob: 892bd8939737bf9ba19b8269945ea502748c3314 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// 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;
u8 *fb;
u32 off_screen_mem_off;
u16 off_screen_mem_size;
u8 reserved1[206];
};
#endif
|