wm: teppich

ref: b9d66bc012e6a431a75bf4d9a138cf6c2a8eb6f6
dir: /include/bitcons.h/

View raw version
#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,
};