18 lines
301 B
C
18 lines
301 B
C
|
|
|
|
#ifndef __HIO_H__
|
|
#define __HIO_H__ __HIO_H__
|
|
|
|
void writeCursorPosition(word pos);
|
|
word getCursorPosition();
|
|
int putc(byte chr);
|
|
int printf(char *fmt, ...);
|
|
int puts(char *str);
|
|
int putDec(dword number);
|
|
int putHex(dword number);
|
|
void console_cls();
|
|
void console_scroll();
|
|
|
|
#endif
|
|
|