Add fbdev for getting framebuffer information

This commit is contained in:
2025-10-05 15:56:16 +02:00
parent 933083ffeb
commit 247ef1bbd1
4 changed files with 46 additions and 0 deletions

7
kernel/dev/fbdev.h Normal file
View File

@ -0,0 +1,7 @@
#ifndef DEV_FBDEV_H_
#define DEV_FBDEV_H_
int32_t fbdev_getinfo(uint8_t *buffer, size_t len, void *extra);
void fbdev_init(void);
#endif // DEV_FBDEV_H_