24 lines
601 B
C
24 lines
601 B
C
|
|
// ****************************************************************************
|
|
//
|
|
// Main code
|
|
//
|
|
// ****************************************************************************
|
|
|
|
#ifndef _MAIN_H
|
|
#define _MAIN_H
|
|
|
|
#include "picovga.h"
|
|
|
|
// used canvas format
|
|
//#define FORMAT CANVAS_8 // 8-bit pixels
|
|
//#define WIDTH 532 // screen width
|
|
//#define HEIGHT 400 // screen height
|
|
//#define DRV VideoEGA // driver
|
|
//#define WIDTHBYTE WIDTH // bytes per line
|
|
|
|
#define WIDTH 512 // screen width
|
|
#define HEIGHT 400 // screen height
|
|
|
|
#endif // _MAIN_H
|