This repository has been archived on 2021-01-14. You can view files and clone it, but cannot push or open issues or pull requests.
xed/include/console.h
2020-09-19 22:16:34 +02:00

21 lines
412 B
C

#ifndef CONSOLE_H
#define CONSOLE_H
#include <stdint.h>
#define SCREEN_WIDTH 80
#define SCREEN_HEIGHT 45
extern uint8_t console_getchar();
extern void console_putchar(uint8_t c);
extern void console_printstring(const uint8_t* c);
extern void console_revon();
extern void console_revoff();
extern void console_clear();
extern void console_clear_eol();
extern void console_goto(uint8_t x, uint8_t y);
#endif