13 lines
165 B
C
13 lines
165 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
struct vbe_interface {
|
||
|
uint32_t *buff;
|
||
|
uint16_t height;
|
||
|
uint16_t width;
|
||
|
uint8_t bpp;
|
||
|
};
|
||
|
|
||
|
extern struct vbe_interface display;
|