mirror of
https://github.com/mist64/perfect6502.git
synced 2024-12-27 20:29:43 +00:00
33 lines
561 B
C
33 lines
561 B
C
#ifndef CONSOLE_H_INCLUDED
|
|
#define CONSOLE_H_INCLUDED
|
|
|
|
enum {
|
|
COLOR_WHITE,
|
|
COLOR_RED,
|
|
COLOR_GREEN,
|
|
COLOR_BLUE,
|
|
COLOR_BLACK,
|
|
COLOR_PURPLE,
|
|
COLOR_YELLOW,
|
|
COLOR_CYAN,
|
|
COLOR_ORANGE,
|
|
COLOR_BROWN,
|
|
COLOR_LTRED,
|
|
COLOR_GREY1,
|
|
COLOR_GREY2,
|
|
COLOR_LTGREEN,
|
|
COLOR_LTBLUE,
|
|
COLOR_GREY3,
|
|
};
|
|
|
|
void clear_screen();
|
|
void up_cursor();
|
|
void down_cursor();
|
|
void left_cursor();
|
|
void right_cursor();
|
|
void move_cursor(int x, int y);
|
|
void get_cursor(int* x, int* y);
|
|
void set_color(int c);
|
|
|
|
#endif /* CONSOLE_H_INCLUDED */
|