30 lines
511 B
C
30 lines
511 B
C
// kio.h
|
|
// Author: Josh Holtrop
|
|
// Created: 12/25/03
|
|
// Modified: 05/21/04
|
|
|
|
#ifndef __HOS_KIO__
|
|
#define __HOS_KIO__ __HOS_KIO__
|
|
|
|
#include "hos_defines.h"
|
|
|
|
extern "C" {
|
|
|
|
void kio_init();
|
|
void printf(char *fmt, ...);
|
|
void putc(dword chr);
|
|
void putHex(dword number);
|
|
void kio_drawConsole();
|
|
void kio_drawConsoleChar(dword position);
|
|
void kio_console_scroll();
|
|
void kio_console_cls();
|
|
void kio_putBCD(dword bcd);
|
|
dword kio_getCursorPosition();
|
|
void kio_writeCursorPosition(dword position);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|