summaryrefslogtreecommitdiff
path: root/Kernel/VGA.h
blob: 747e064509b0faa1ad3e4ea790f19a50301297be (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "types.h"

void vga_init();
BYTE vga_get_attr();
void vga_set_attr(BYTE);
void vga_set_cursor(WORD);
void vga_set_cursor(BYTE row, BYTE column);
WORD vga_get_cursor();
void kprintf(const char *fmt, ...);