summaryrefslogtreecommitdiff
path: root/Kernel/VGA.h
blob: 08cf97149f57cabae663fc89965773cc57754efd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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 vga_putch_at(byte row, byte column, byte ch);
void vga_scroll_up();

int kprintf(const char *fmt, ...);
int ksprintf(char* buf, const char *fmt, ...);