23 lines
389 B
C
23 lines
389 B
C
// kio.h
|
|
// Author: Josh Holtrop
|
|
// Created: 12/25/03
|
|
// Modified: 03/09/04
|
|
|
|
#ifndef __HOS_KIO__
|
|
#define __HOS_KIO__ __HOS_KIO__
|
|
|
|
#include "hos_defines.h"
|
|
|
|
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);
|
|
|
|
#endif
|
|
|
|
|