#include <Types.h>
#include <Macros.h>
#include <VGA.h>
#include <Runtime.h>
#include "Terminal.h"
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
Go to the source code of this file.
|
void | bell (Terminal *term) |
| Makes a sound (bell). More...
|
|
void | putchar (Terminal *term, const teken_pos_t *pos, teken_char_t ch, const teken_attr_t *attr) |
| Output a new character. More...
|
|
void | cursor (Terminal *term, const teken_pos_t *pos) |
| Sets the Terminal cursor. More...
|
|
void | fill (Terminal *term, const teken_rect_t *rect, teken_char_t ch, const teken_attr_t *attr) |
| Fills the Terminal buffer with a character. More...
|
|
void | copy (Terminal *term, const teken_rect_t *rect, const teken_pos_t *pos) |
| Copy bytes to the terminal. More...
|
|
void | param (Terminal *term, int key, int value) |
| Set terminal parameters. More...
|
|
void | respond (Terminal *ctx, const void *buf, size_t size) |
| Unused. More...
|
|
◆ tekenToVGA