blob: f477a61090d45e2de3d3fba92494a01022bee0e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "types.h"
void vga_init();
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, byte attr);
void vga_scroll_up();
void vga_clear();
void vga_clear_row(word);
|