blob: b13f84b32fda09dfbd415bda6ce955c145484a11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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();
|