Files
picovga-RGsB/vga_matrixrain/src/main.h
2021-06-10 19:07:49 +02:00

21 lines
641 B
C

// ****************************************************************************
//
// Main code
//
// ****************************************************************************
#ifndef _MAIN_H
#define _MAIN_H
#define WIDTH 640 // screen width in pixels
#define HEIGHT 480 // screen height
#define FONTW 8 // font width
#define FONTH 8 // font height
#define TEXTW (WIDTH/FONTW) // text width (=80)
#define TEXTH (HEIGHT/FONTH) // text height (=60)
#define TEXTWB (TEXTW*2) // text width byte (=160)
#define TEXTSIZE (TEXTWB*TEXTH) // text box size in bytes (=9600)
#endif // _MAIN_H