Plan 9 from Bell Labs 1995-05-12
1 files changed, 30 insertions(+), 0 deletions(-) A pc/vgaark2000pv.c
A pc/vgaark2000pv.c => pc/vgaark2000pv.c +30 -0
@@ 0,0 1,30 @@ #include "u.h" #include "../port/lib.h" #include "mem.h" #include "dat.h" #include "fns.h" #include "../port/error.h" #include <libg.h> #include "screen.h" #include "vga.h" static void ark2000pvpage(int page) { vgaxo(Seqx, 0x15, page); vgaxo(Seqx, 0x16, page); } static Vgac ark2000pv = { "ark2000pv", ark2000pvpage, 0, }; void vgaark2000pvlink(void) { addvgaclink(&ark2000pv); }