ref: 9e35e814941b08fe29871f7cc8e925bf19ff5f7f
dir: /include/bitcons.h/
#pragma once
#include <cons.h>
#include <vga.h>
#include <ps2.h>
#include <bitmap.h>
consdev_t bitcons =
{
.name = "bitcons",
.init = vga_init,
.clear = vga_clear,
.puts = bitputs,
.putc = bitputc,
.getc = ps2_getc,
.scroll = vga_scroll,
};