blabla

Dependents:   VGA

vga640x400.h

Committer:
yokoland95
Date:
2019-06-13
Revision:
8:6e362b7be26b
Parent:
0:78fa88bb24cb

File content as of revision 8:6e362b7be26b:

#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);
//static void state_after_vsync(void);

void clear_buffer(void);

#endif