mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
13 lines
274 B
C
13 lines
274 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();
|
|
|
|
int kprintf(const char *fmt, ...);
|
|
int ksprintf(char* buf, const char *fmt, ...);
|