| plan 9 kernel history: overview | file list | diff list |
1995/02021/pc/vgaclgd542x.c (diff list | history)
| pc/vgaclgd542x.c on 1995/02021 | ||
| 1995/02021 | #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 clgd542xpage(int page) { vgaxo(Grx, 0x09, page<<4); } static Vgac clgd542x = { "clgd542x", clgd542xpage, 0, }; void vgaclgd542xlink(void) { addvgaclink(&clgd542x); } | |