aboutsummaryrefslogtreecommitdiff
path: root/include/02.vga/deo6
blob: 7079bf9e9edf9c94966bbf6282006c95b8526654 (plain)
1
2
3
4
5
void terminal_putentryat(char c, uint8_t color, size_t x, size_t y)
{
    const size_t index=y*VGA_WIDTH+x;
    terminal_buffer[index]=vga_entry(c, color);
}