summaryrefslogtreecommitdiff
path: root/src/kernel/vga.h
blob: dd1c906e1602bbd1d1a63ae5a01c45745d6475d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef VGA_H
#define VGA_H

#include <stdint.h>

void vga_print_at(uint16_t pos, const char *sz);
void vga_set_color(uint8_t color);
void vga_blank();
void vga_printch(char ch);
void vga_swap_color(uint16_t pos);

#endif