/*
**  
**  Graphic library with double buffering
**
** LDJ rev 3.0 - 06/06/06
*/

#define VRES     160    // desired vertical resolution
#define HRES     160    // desired horizontal resolution (pixel)

void initVideo( void);

void haltVideo( void);

void clearAScreen( void);

void clearHScreen( void);

void swapV( void);

void plot( unsigned x, unsigned y); 

void line( int x0, int y0, int x1, int y1);

void synchV( void);


