index
:
marvinborner/Melvix
dev
:computer: Small operating system written from scratch (covid/school project)
Marvin
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
kernel
/
lib
/
stdio
/
putch.c
blob: f7e0248a72a4b29c3cb7771ec1cd84f291fe1905 (
plain
) (
blame
)
1
2
3
4
5
6
#include <kernel/graphics/vesa.h> void putch(char c) { vesa_draw_char(c); }