diff options
Diffstat (limited to 'kernel/io/font.h')
-rw-r--r-- | kernel/io/font.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/kernel/io/font.h b/kernel/io/font.h new file mode 100644 index 0000000..e4f72ca --- /dev/null +++ b/kernel/io/font.h @@ -0,0 +1,15 @@ +#ifndef HOS_IO_FONT_H +#define HOS_IO_FONT_H + +#include <cstdint> + +namespace hos::io +{ + class font + { + public: + virtual void write (unsigned char character, void *fb_addr, std::uint16_t bpp) = 0; + }; +} + +#endif |