diff options
| author | Michal Idziorek <m.i@gmx.at> | 2015-05-17 19:43:59 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2015-05-17 19:43:59 +0200 |
| commit | d98828d08eb1f6c1394f38a1df69c73fef0cfefa (patch) | |
| tree | 31df37430733c906b235b88c2cfa14d835af4bec /xxx/inactive/console.h | |
| parent | 29ea3208b004f15dafa48ae29a75ba7f0c093a74 (diff) | |
working on vt52 and some cleanup
Diffstat (limited to 'xxx/inactive/console.h')
| -rw-r--r-- | xxx/inactive/console.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/xxx/inactive/console.h b/xxx/inactive/console.h new file mode 100644 index 0000000..a153968 --- /dev/null +++ b/xxx/inactive/console.h @@ -0,0 +1,20 @@ +/* +#ifndef CONSOLE_H +#define CONSOLE_H + +#include <stdint.h> + +uint32_t console_init(); +void console_put_char(uint8_t c,uint8_t color, uint32_t x, uint32_t y); +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 +*/ |
