blob: e4f72ca6db47a4562daa4a00f72a25b378afbca2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|