Subversion Repositories Shiroi

Rev

Blame | Last modification | View Log | Download | RSS feed

/* $Id: text.h 8 2024-08-28 16:29:15Z nishi $ */

#ifndef __TEXT_H__
#define __TEXT_H__

void text_init(void);
void text_card(int t, int port);

void clear(void);
void putchar(char);
void putstr(char*);
void scroll_y(void);
void print_ptr(void*);
char getch(void);
void cursor(void);
void killcursor(void);

#endif