Subversion Repositories HelenOS-historic

Rev

Rev 1 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 63
Line 33... Line 33...
33
#define ROW     80
33
#define ROW     80
34
#define ROWS        25
34
#define ROWS        25
35
#define SCREEN      (ROW*ROWS)
35
#define SCREEN      (ROW*ROWS)
36
 
36
 
37
extern void ega_init(void);
37
extern void ega_init(void);
38
extern void ega_putchar(char ch);
38
extern void ega_putchar(const char ch);
39
 
39
 
40
static void ega_check_cursor(void);
40
static void ega_check_cursor(void);
41
static void ega_display_char(char ch);
41
static void ega_display_char(char ch);
42
 
42
 
43
#endif
43
#endif