mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00: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, ...);
|