wm: teppich

ref: 358154f1930a7b7dfb91c8e971458a27ca3715a7
dir: /include/pccons.h/

View raw version
#pragma once
#include <cons.h>
#include <vga.h>
#include <ps2.h>

consdev_t pccons = 
{
	.name = "cons",
	.init = vga_init,
	.clear = vga_clear,
	.puts = vga_puts,
	.putc = vga_putc,
	.getc = ps2_getc,
	.scroll = vga_scroll,
};