ps2rom/rom/iop/iop_sio.c

11 lines
167 B
C
Raw Normal View History

//! IOP SIO implementation
#include <shared/sio.h>
void SIO_putc(char c) {
*((char*)0x1f80380c) = c;
}
void SIO_puts(const char* s) {
while(*s)
SIO_putc(*s++);
}