#include #include "vga.h" #include "data.h" void put_text(uint16_t x, uint16_t y, const char *text) { Rect dst = { x, y, 8, 8}; while (*text) { blit(binary_font_start + ((*text++ - ' ') << 6), &dst); dst.x += 8; } }