Subversion Repositories Shiroi

Rev

Rev 8 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8 Rev 12
Line 1... Line 1...
1
/* $Id: text.h 8 2024-08-28 16:29:15Z nishi $ */
1
/* $Id: text.h 12 2024-08-29 04:19:08Z nishi $ */
2
 
2
 
3
#ifndef __TEXT_H__
3
#ifndef __TEXT_H__
4
#define __TEXT_H__
4
#define __TEXT_H__
5
 
5
 
6
void text_init(void);
6
void text_init(void);
7
void text_card(int t, int port);
7
void text_card(int, int);
8
 
8
 
9
void clear(void);
9
void clear(void);
10
void putchar(char);
10
void putchar(char);
11
void putstr(char*);
11
void putstr(char*);
12
void scroll_y(void);
12
void scroll_y(void);
13
void print_ptr(void*);
13
void print_ptr(void*);
-
 
14
char agetch(void);
14
char getch(void);
15
char getch(void);
15
void cursor(void);
16
void cursor(void);
16
void killcursor(void);
17
void killcursor(void);
17
 
18
 
18
#endif
19
#endif