11 lines
241 B
C
11 lines
241 B
C
#ifndef _BOOT_DRIVERS_SCREEN_H
|
|
#define _BOOT_DRIVERS_SCREEN_H
|
|
|
|
#include <libboot/abi/memory.h>
|
|
#include <libboot/types.h>
|
|
|
|
int fb_init();
|
|
int fb_reinit_after_map(uintptr_t vaddr);
|
|
int fb_put_char(uint8_t c);
|
|
|
|
#endif // _BOOT_DRIVERS_SCREEN_H
|