Initial. Don't... just don't ask.

This commit is contained in:
Ryan McGrath 2011-02-24 00:22:00 -08:00
commit 00bae13bba
586 changed files with 129057 additions and 0 deletions

14
utils/dumpreg.c Normal file
View file

@ -0,0 +1,14 @@
#include <vga.h>
int
main (void)
{
/* We can't call vga_init, because register dumping should work */
/* from within X, and vga_init will exit in that case. */
vga_init();
vga_dumpregs ();
vga_screenon ();
/* vga_setmode(TEXT); Hack to unblank screen. */
return 0;
}