15 lines
334 B
C
15 lines
334 B
C
#include <OS/Log.h>
|
|
#include <Lib/String.h>
|
|
#include <Lib/VAArgs.h>
|
|
#include <IO/Serial.h>
|
|
|
|
void OSLog(const ASCII* format, ...) {
|
|
ASCII buffer[kOSLogBufferSize];
|
|
|
|
va_list args;
|
|
va_start(args, format);
|
|
StringFormatVariadic(buffer, kOSLogBufferSize, format, args);
|
|
va_end(args);
|
|
|
|
IOSerialPutString(buffer);
|
|
} |