-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathterminal.h
56 lines (46 loc) · 1.36 KB
/
terminal.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef TERMINAL_H
#define TERMINAL_H
#include "stddef.h"
#include "stdint.h"
#define ESC (0x1B)
#define BS (0x08)
#define EOT (0x04)
/* Hardware text mode color constants. */
enum vga_color
{
COLOR_BLACK = 0,
COLOR_BLUE = 1,
COLOR_GREEN = 2,
COLOR_CYAN = 3,
COLOR_RED = 4,
COLOR_MAGENTA = 5,
COLOR_BROWN = 6,
COLOR_LIGHT_GREY = 7,
COLOR_DARK_GREY = 8,
COLOR_LIGHT_BLUE = 9,
COLOR_LIGHT_GREEN = 10,
COLOR_LIGHT_CYAN = 11,
COLOR_LIGHT_RED = 12,
COLOR_LIGHT_MAGENTA = 13,
COLOR_LIGHT_BROWN = 14,
COLOR_WHITE = 15,
};
uint8_t make_color(enum vga_color fg, enum vga_color bg);
size_t strlen(const char* str);
char * itos(uint32_t myint, char buffer[], int bufflen);
static const size_t VGA_WIDTH = 80;
static const size_t VGA_HEIGHT = 25;
void terminal_initialize(uint8_t color);
//void terminal_setcolor(uint8_t color);
//void terminal_settextcolor(uint8_t color);
extern void (*terminal_putchar)(char c);
extern void (*terminal_set_status)(char *status);
extern void (*terminal_set_cursor)(uint8_t x, uint8_t y);
//void terminal_putchar(char c);
void terminal_writestring(const char* data);
void terminal_write_dec(uint32_t d);
void terminal_write_hex(uint32_t d);
//void terminal_set_status_color(uint8_t color);
//void (*terminal_set_status)(char *status);
//void terminal_set_cursor(uint8_t x, uint8_t y);
#endif