Subversion Repositories Shiroi

Rev

Details | Last modification | View Log | RSS feed

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