blu_os
Loading...
Searching...
No Matches
tty.h
1//
2// Created by dylan on 08/07/2026.
3//
4
5#ifndef BLU_OS_TTY_H
6#define BLU_OS_TTY_H
7#include <stddef.h>
8#include <stdint.h>
9
10#define VGA_MEMORY 0xb8000
11
12void terminalInit();
13
14void terminalSetColor(uint8_t color);
15
16void terminalPutEntryAt(char c, uint8_t color, size_t x, size_t y);
17
18void terminalScroll();
19
20void terminalPutChar(char c);
21
22void terminalWrite(const char* data, size_t size);
23
24void terminalWriteString(const char* data);
25
26#endif //BLU_OS_TTY_H
Common definitions for C programs.
Fixed-width integer types.