Files
ksOS/Kernel/Source/OS/Log.c
T
2026-04-24 16:30:02 +04:00

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);
}