mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 18:20:43 +09:00
13 lines
282 B
C
13 lines
282 B
C
#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();
|
|
void vga_clear();
|