pcsx2/fps2bios/kernel/iopload/stdio/stdio.c
Jake.Stine 6ebfae8ef1 Re-Added eol-style:native properties to the repository. The settings got lost when we merged from Playground to Official.
Added interface.cpp (plugin/pcsx2 interface) and savestate.cpp to SPU2ghz, to help clean up SPU2.cpp.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@463 96395faa-99c1-11dd-bbfe-3dabce05a288
2009-02-09 21:15:56 +00:00

40 lines
532 B
C

#include <tamtypes.h>
//#include <stdio.h>
void Kputc(u8 c) {
*((u8*)0x1f80380c) = c;
}
void Kputs(u8 *s) {
while (*s != 0) {
Kputc(*s++);
}
}
void Kmemcpy(void *dest, const void *src, int n) {
const u8 *s = (u8*)src;
u8 *d = (u8*)dest;
while (n) {
*d++ = *s++; n--;
}
}
/*
int Kprintf(const char *format, ...) {
char buf[4096];
va_list args;
int ret;
va_start(args, format);
ret = vsnprintf(buf, 4096, format, args);
va_end(args);
Kputs(buf);
return ret;
}
*/
void _start() {
Kputs("STDIO start\n");
}