mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-02-05 14:05:29 +01:00
31 lines
497 B
C
31 lines
497 B
C
/**
|
|
* Kernel print functions.
|
|
*/
|
|
|
|
#include "printk.h"
|
|
|
|
#include "vsprintf.h"
|
|
#include "../display/video_fb.h"
|
|
|
|
/**
|
|
* Temporary stand-in main printk.
|
|
*
|
|
* TODO: This should print via UART, console framebuffer, and to a ring for
|
|
* consumption by Horizon
|
|
*/
|
|
void printk(const char *fmt, ...)
|
|
{
|
|
va_list list;
|
|
va_start(list, fmt);
|
|
vprintk(fmt, list);
|
|
va_end(list);
|
|
}
|
|
|
|
|
|
void vprintk(const char *fmt, va_list args)
|
|
{
|
|
char buf[512];
|
|
vsnprintf(buf, sizeof(buf), fmt, args);
|
|
video_puts(buf);
|
|
}
|