ref: ca563e03c774c1da22039ead4b64ef3322249f97
dir: /include/pccons.h/
#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, };