summaryrefslogtreecommitdiff
path: root/kernel/console.h
blob: e68a3b782a6f78f8ff0369ed7b35af13e454fb85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef CONSOLE_H
#define CONSOLE_H

#include <stdint.h>

uint32_t console_init();
void console_put_char_white(char);
void console_put_char_red(char);
void console_put_char_green(char);
void console_put_char_gray(char);
void console_put_str_white(char *);
void console_put_str_red(char *);
void console_put_str_green(char *);
void console_put_str_gray(char *);
void console_del_char();


#endif