17 lines
414 B
C
17 lines
414 B
C
|
|
// ****************************************************************************
|
|
//
|
|
// Main code
|
|
//
|
|
// ****************************************************************************
|
|
|
|
#ifndef _MAIN_H
|
|
#define _MAIN_H
|
|
|
|
// screen resolution
|
|
#define WIDTH 512 // screen width
|
|
#define HEIGHT 400 // screen height
|
|
#define WIDTHBYTE WIDTH // bytes per line
|
|
|
|
#endif // _MAIN_H
|