/* ds81 - Nintendo DS ZX81 emulator. Copyright (C) 2006 Ian Cowburn 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. $Id$ */ #include #include #include #include "framebuffer.h" #include "gui.h" #include "splashimg_bin.h" #include "zx81_bin.h" /* ---------------------------------------- STATIC DATA */ /* ---------------------------------------- DISPLAY FUNCS */ static void VBlankFunc(void) { scanKeys(); } static void Splash(void) { static const char *text[]= { "DS81 \177 2006 Ian C", " ", "ZX81 ROM", "\177 1981", "Nine Tiles Networks LTD", " ", "3D MONSTER MAZE", "\177 1983", "Malcom E. Evans", " ", "PRESS A TO CONTINUE", " ", " ", "http://www.noddybox.co.uk/", NULL }; sImage img; int f; FB_Clear(); loadPCX(splashimg_bin,&img); image8to16(&img); dmaCopy(img.data8,BG_GFX_SUB,SCREEN_WIDTH*SCREEN_HEIGHT*2); for(f=0;text[f];f++) { FB_Centre(text[f],40+f*8,FB_RGB(31,31,31),-1); } while(!(keysDown() & KEY_A)) { swiWaitForVBlank(); } } /* ---------------------------------------- MAIN */ int main(int argc, char *argv[]) { int ch; uint8 *ch_data; powerON(POWER_ALL_2D); /* Set up main text screen and grab the ROM character data */ videoSetMode(MODE_0_2D | DISPLAY_BG0_ACTIVE); vramSetBankA(VRAM_A_MAIN_BG_0x6000000); vramSetBankB(VRAM_B_MAIN_BG_0x6020000); BG0_CR = BG_COLOR_256|BG_MAP_BASE(31)|BG_TILE_BASE(0); BG0_X0 = 0; BG0_Y0 = 0; BG_PALETTE[0] = RGB15(31,31,31); BG_PALETTE[1] = RGB15(0,0,0); ch_data = (uint8*)BG_TILE_RAM(0); for(ch=0;ch<64;ch++) { int r; for(r=0;r<8;r++) { int b; int rd; rd=zx81_bin[0x1e00+ch*8+r]; for(b=7;b>=0;b--) { if (rd&(1<