Files
picovga-RGsB/examples/vga_raytrace/src/main.h
2023-02-26 14:09:49 -08:00

25 lines
573 B
C

// ****************************************************************************
//
// Main code
//
// ****************************************************************************
#ifndef _MAIN_H
#define _MAIN_H
#include "picovga.h"
typedef float real;
// screen resolution
#define WIDTH 512 // screen width
#define HEIGHT 400 // screen height
//#define DRV VideoEGA // driver
#define WIDTHBYTE WIDTH // bytes per line
// Draw box
extern u8 Box[WIDTHBYTE*HEIGHT] __attribute__ ((aligned(4)));
#endif // _MAIN_H