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: 2689ac76947a7f0cdc690128854faae5cc5f1c28 (
plain
) (
blame
)
1
2
3
4
5
6
#include <graphics/vesa.h> void putch(char c) { vesa_draw_char(c); }