Three-pin 640x400 VGA Console Mode

Dependents:   projet_AWA_testVGA2

vga640x400.h

Committer:
Ivop
Date:
2011-07-03
Revision:
0:78fa88bb24cb
Child:
4:3f0bd68a4dda

File content as of revision 0:78fa88bb24cb:

#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