20 lines
315 B
C
20 lines
315 B
C
// kout.h
|
|
// Author: Josh Holtrop
|
|
// Date: 08/02/04
|
|
|
|
#ifndef __HOS_KOUT__
|
|
#define __HOS_KOUT__ __HOS_KOUT__
|
|
|
|
#include "hos_defines.h"
|
|
|
|
void printf(char *fmt, ...);
|
|
void putHex(u32_t number);
|
|
void kio_putBCD(u32_t bcd);
|
|
void putc(int c);
|
|
void puts(char *str);
|
|
void putDec(int num);
|
|
void putDecu(u32_t num);
|
|
|
|
#endif
|
|
|