Add display/printk to fusee stage2

This commit is contained in:
Michael Scire
2018-04-08 05:06:47 -06:00
parent c758b1188a
commit 39bf3cb800
10 changed files with 14529 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/**
* 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(char *fmt, ...)
{
va_list list;
char buf[512];
va_start(list, fmt);
vsnprintf(buf, sizeof(buf), fmt, list);
video_puts(buf);
va_end(list);
}