A toy operating system written in C.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
|
|
#include "src/kernel/stream.h"
|
|
|
|
#define VGA_WIDTH 80
|
|
#define VGA_HEIGHT 25
|
|
|
|
stream_t *vga_init();
|
|
|
|
void vga_set_string(uint8_t row, uint8_t col, const char *str, uint8_t color);
|
|
|