mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
9396108034
It's a lot crappier than I remembered it. It's gonna need a lot of work.
11 lines
227 B
C
11 lines
227 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 kprintf(const char *fmt, ...);
|