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

#include <stdint.h>

void vga_set_color(uint8_t color);
void vga_blank();
void vga_scroll();
void vga_printch(char ch);

#endif