Three-pin 640x400 VGA Console Mode

Dependents:   projet_AWA_testVGA2

Revision:
0:78fa88bb24cb
Child:
4:3f0bd68a4dda
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vga640x400.h	Sun Jul 03 18:13:20 2011 +0000
@@ -0,0 +1,14 @@
+#ifndef VGA640X400_H
+#define VGA640X400_H
+
+extern unsigned char text_buffer[80*25];
+extern unsigned char *font;
+
+// Always call this as the very first thing in your application
+// as it resets the CPU clock to 100MHz. It also resets UART0
+// to 9600 baud with the new clock. All other peripherals are off
+// after a call to init_vga()
+
+void init_vga(void);
+
+#endif
\ No newline at end of file