2018-05-05 22:55:40 +01:00
|
|
|
#ifndef FUSEE_CONSOLE_H
|
|
|
|
#define FUSEE_CONSOLE_H
|
|
|
|
|
2018-05-09 21:20:14 +01:00
|
|
|
int console_init(void);
|
|
|
|
int console_display(const void *framebuffer); /* Must be page-aligned */
|
|
|
|
int console_resume(void);
|
|
|
|
int console_end(void);
|
2018-05-05 22:55:40 +01:00
|
|
|
|
|
|
|
#endif
|