VGA driver wont draw a bitmap
Posted: Sat Apr 07, 2007 1:41 pm
Hi, I want my VGA driver to draw a 16 color bitmap to the screen, but all I get is a gray screen with a white blinking cursor. I'm not sure what I'm doing wrong, but I'm pretty sure I'm on the right track. I first made a 16 color bitmap in paint for testing the vga driver, then I exported it to C code in GIMP. It might be just a small problem but Im completely stuck at this:
Thanks in advance,
-Steven
Code: Select all
/*
* The Sendla Operating System
* Copyright 2007 Steven O'Brien (Motron Software.) and Brandon F.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*
* Sendla VGA Driver
*/
#include <system.h>
unsigned char *VGA = (unsigned char *)0xA0000L; /* First of all, we put a pointer in video memory, this is how to do it in PMODE */
unsigned char *dbl_buffer;
unsigned int SCREEN_WIDTH=320;
unsigned int SCREEN_HEIGHT=200;
/* Bitmap Structure */
typedef struct tagBITMAP
{
unsigned int width;
unsigned int height;
unsigned char *data;
} BITMAP;
/* Structure for the position on the screen */
typedef struct tagRECT
{
long x1;
long y1;
long x2;
long y2;
} RECT;
static const struct vgatest {
unsigned int width;
unsigned int height;
unsigned int bytes_per_pixel; /* 3:RGB, 4:RGBA */
unsigned char data[121 * 25 * 3 + 1];
} vgatest = {
121, 25, 3,
"\376\376\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\200"
"\0\200\0\200\200\376\376\376\376\376\376\376\376\376\0\200\200\376\376\376"
"\376\376\376\376\376\376\376\376\0\376\376\376\0\0\376\0\376\0\376\376\376"
"\0\200\200\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\200\0\200\200\0"
"\200\376\376\0\376\376\376\376\376\376\376\376\0\376\376\376\200\0\200\200"
"\0\200\376\376\0\200\0\200\376\0\0\376\376\376\200\0\200\376\376\376\376"
"\376\0\0\376\0\376\376\376\277\277\277\0\200\200\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\0\0\0\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\200"
"\0\200\376\376\376\376\376\0\376\376\376\0\0\376\376\376\376\376\376\376"
"\0\0\376\0\376\0\0\200\200\0\200\200\200\0\0\0\376\0\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376"
"\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\0\200\0\200"
"\376\376\376\376\376\376\376\376\376\376\376\376\0\200\200\376\376\376\376"
"\376\376\376\376\0\0\200\200\0\200\200\0\376\0\376\376\376\200\0\200\0\0"
"\376\200\0\0\376\376\376\0\0\376\376\376\376\376\376\376\0\200\200\277\277"
"\277\0\376\0\277\277\277\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\0\376\376\376\376\376\0\376"
"\376\376\0\0\376\200\0\0\376\376\376\376\376\376\277\277\277\376\376\376"
"\376\0\0\376\376\376\376\376\376\0\0\376\0\200\200\376\376\376\376\376\376"
"\0\200\200\0\376\0\376\376\376\0\200\200\0\200\200\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376"
"\376\200\0\200\376\376\376\376\376\0\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\200\0\200\0\0\0\376\376\376\376\376"
"\376\200\0\0\376\376\376\0\200\200\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\0\0\376\0\376\0\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376"
"\376\376\376\376\376\376\0\376\376\376\376\376\0\376\376\376\0\0\0\376\376"
"\0\376\376\376\376\0\0\200\0\200\376\376\0\376\376\376\376\376\376\0\0\0"
"\0\200\200\376\376\376\376\376\376\376\0\0\376\376\376\0\0\376\376\376\376"
"\376\376\376\376\376\376\0\200\200\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\0\0\0\376\376\376\376\0"
"\0\376\376\376\0\376\376\0\0\376\0\200\200\376\0\376\376\376\376\0\200\200"
"\376\376\0\0\0\0\376\376\0\376\376\376\376\0\0\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\376\0\376\376\376"
"\376\376\0\200\200\376\376\0\376\376\376\376\376\376\200\0\200\0\376\376"
"\0\376\376\376\0\0\376\376\376\376\376\376\376\376\376\277\277\277\376\376"
"\376\0\200\200\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\376\0\0\0\376"
"\0\376\0\200\200\0\0\376\200\200\0\200\0\0\376\0\376\200\0\200\376\0\376"
"\200\0\200\376\376\376\0\0\0\0\200\200\0\376\0\0\200\200\0\376\0\376\0\0"
"\200\0\0\376\376\376\0\376\0\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\200\0\200\0\376\376\376\376\376\376"
"\376\376\200\0\200\200\200\0\200\0\200\0\200\200\376\0\376\376\0\376\0\376"
"\376\0\200\0\376\0\0\0\0\200\0\200\200\376\376\376\376\376\376\0\376\0\376"
"\376\376\376\376\376\376\376\376\0\0\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\200\200\0\376\0\376\376\376\376\376\376\376\0\376\376"
"\376\376\376\0\0\376\0\0\0\200\0\200\376\0\0\277\277\277\0\0\376\376\0\376"
"\0\200\0\200\200\0\376\0\0\0\0\200\0\0\376\0\0\200\376\376\376\376\376\376"
"\376\376\376\277\277\277\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\200\200\0\0\0\0\376\376\376\0\376\376\376\376\376\376\376\376\376"
"\376\376\376\0\376\376\376\376\376\376\376\376\376\376\376\376\376\277\277"
"\277\200\0\200\200\200\0\0\200\200\277\277\277\0\200\0\376\376\376\376\376"
"\376\0\0\200\376\376\376\376\376\376\0\376\0\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\200"
"\0\200\376\376\376\376\376\376\0\0\200\376\376\0\200\200\0\0\0\376\376\376"
"\376\376\376\376\0\200\200\200\0\200\376\376\376\376\376\376\376\376\376"
"\200\200\0\376\376\376\376\0\0\200\0\0\0\0\200\0\0\376\0\0\200\376\376\376"
"\200\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376"
"\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\0\0\0\376\376\376\376\0\376\376\376\376\376\376\0\200\0\200\376\376\0\376"
"\0\0\0\0\376\200\200\0\376\376\376\376\376\376\376\376\376\200\0\200\200"
"\0\0\0\0\376\0\200\200\376\376\376\376\376\376\0\0\200\0\0\376\376\376\376"
"\0\0\376\0\200\200\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376"
"\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\200\200\0\376\376\376\376\376\376\376\376\376\376\376\376"
"\200\0\200\376\376\376\376\0\0\200\0\200\0\0\376\376\376\376\376\0\376\0"
"\0\200\0\376\376\376\376\376\376\376\376\376\376\376\0\376\0\277\277\277"
"\0\0\200\0\0\376\376\376\376\200\200\200\0\0\200\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376"
"\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\0\0\200\200\200\376\376"
"\376\200\0\200\376\376\376\376\376\376\0\0\200\200\0\200\0\200\0\376\376"
"\376\376\376\376\200\0\0\200\0\0\376\0\376\376\0\0\0\0\200\0\0\376\376\376"
"\376\376\0\376\0\0\200\0\0\200\0\200\0\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376"
"\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\0\376\376\376\376\0\0\200\0\0\200\376\376\376\376\376\376\376"
"\376\376\376\376\376\200\200\0\0\0\376\376\376\376\0\0\200\376\0\376\0\376"
"\0\0\0\200\0\200\0\0\0\200\0\376\0\0\0\200\376\376\376\0\0\200\0\376\0\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376"
"\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\200\200\0\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\0\0\200\376\376\376\376"
"\376\376\0\376\376\376\376\376\0\200\200\376\376\376\376\0\0\376\376\376"
"\0\0\200\376\376\376\376\376\376\376\0\0\0\0\200\0\0\200\0\0\200\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0"
"\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\0\0\376\0\0\376\0\0\376\0\0\376\0\0\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\0\0\376\0\0\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\0\0\200\200\200\0\0\376\376\0\376\376\200\200\200"
"\376\376\376\376\376\376\376\376\376\376\376\376\0\376\376\0\376\376\376"
"\376\376\376\0\376\0\200\200\376\376\376\277\277\277\0\0\200\376\376\376"
"\0\200\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\0\0\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\0\0\376\0\0\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\200\200\0\0\0\0\376\376\376\376\376\376\376\376"
"\376\376\0\376\376\0\376\200\200\200\376\376\376\376\376\376\376\376\376"
"\200\200\0\376\376\376\376\0\376\376\376\376\0\0\200\200\200\200\376\0\0"
"\376\0\0\376\376\376\0\0\200\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\200\200\0\376\376\376\0\200\0\0\376\376\200"
"\200\0\376\376\376\376\376\376\376\376\376\376\376\376\200\200\200\376\376"
"\376\376\376\376\376\376\376\376\0\0\376\376\376\376\376\376\376\376\376"
"\200\200\200\376\376\376\376\376\376\0\200\0\376\376\376\200\200\200\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\200\200\0\376\376\376\200\200\200\376\376\376\376\376"
"\376\376\376\376\0\0\200\376\0\376\200\200\200\0\0\0\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\0\376\376\0\200\0\376\376\376\376"
"\376\376\0\200\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\200\200"
"\0\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\0\0\200\376"
"\376\376\376\376\376\376\0\376\376\376\376\0\200\0\376\376\376\376\376\376"
"\0\0\200\200\200\200\376\0\376\200\200\200\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\200\200\200\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\0\376\376\376\376\376"
"\376\376\376\376\0\376\376\376\376\0\0\200\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\200\200\200\376\376\376\0\376\376\0\0\200\0"
"\200\0\376\376\376\0\0\200\376\376\376\376\376\376\376\376\376\0\0\200\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376\376"
"\376\376\376\376\376",
};
/* Initiates a double buffer */
void init_dbl_buffer(void)
{
dbl_buffer = (unsigned char *) malloc (SCREEN_WIDTH * SCREEN_HEIGHT);
if (dbl_buffer == NULL)
{
puts("Not enough memory for double buffer.\n");
}
}
/* If you dont know what this does then you should be watching tv instead */
void update_screen(void)
{
#ifdef VERTICAL_RETRACE
while ((inportb(0x3DA) & 0x08));
while (!(inportb(0x3DA) & 0x08));
#endif
memcpy(VGA, dbl_buffer, (unsigned int)(SCREEN_WIDTH * SCREEN_HEIGHT));
}
/* Plots a pixel */
void setpixel (BITMAP *bmp, int x, int y, unsigned char color)
{
bmp->data[y * bmp->width + x];
}
/* Draws a filled rectangle in a bitmap. */
void drawrect(BITMAP *bmp, unsigned short x, unsigned short y, unsigned short x2, unsigned short y2, unsigned char color)
{
unsigned short tx, ty;
for (ty = y; ty < y2; ty++)
for (tx = x; tx < x2; tx++)
setpixel (bmp, tx, ty, color);
}
void draw_bitmap_old(BITMAP *bmp, int x, int y)
{
int j;
unsigned int screen_offset = (y << 8) + (y << 6) + x;
unsigned int bitmap_offset = 0;
for(j = 0; j < bmp->height; j++)
{
memcpy(&dbl_buffer[screen_offset], &bmp->data[bitmap_offset], bmp->width);
bitmap_offset += bmp->width;
screen_offset += SCREEN_WIDTH;
}
}
/* Just a test to make sure it works */
void vga_test()
{
unsigned char key; puts("l2");
do
{
key = 0;
if (1) key = getc();
/* You must clear the double buffer every time to avoid evil messes
(go ahead and try without this, you will see) */
memset (dbl_buffer, 0, SCREEN_WIDTH * SCREEN_HEIGHT);
//drawrect( vgatest.data, 0, 0, vgatest.width, vgatest.height, 0x1 );
draw_bitmap_old( vgatest.data, 320, 200 );
/* Draws the double buffer */
update_screen();
} while (key != 27); /* Continue Loop until ESC */
}
-Steven