Initial commit

This commit is contained in:
2018-11-11 14:19:19 -06:00
commit af15d43c8a
17 changed files with 1351 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef __SCRN_H
#define __SCRN_H
extern void cls();
extern void putch(unsigned char c);
extern void puts(unsigned char *str);
extern void settextcolor(unsigned char forecolor, unsigned char backcolor);
extern void init_video();
#endif