summaryrefslogtreecommitdiff
path: root/src/kernel/libs/drivers/video.c
blob: 9bb41876d503e335d1756c83e050b0c52e890c04 (plain)
1
2
3
4
5
6
#include <printf.h>
#include <video.h>
void dump_video() {
  struct mode_info *video = (struct mode_info *)0x600;
  printf("Video info:\nx:\t%u\ny:\t%u\nbbp:\t%u\nloc:\t0x%p\n", video->width, video->height, video->bpp, video->framebuffer);
}