/*************************************************************************** pmd85.c Functions to emulate the video hardware of PMD-85. Krzysztof Strzecha ***************************************************************************/ #include "driver.h" #include "mslegacy.h" #include "video/generic.h" #include "includes/pmd85.h" unsigned char pmd85_palette[3*3] = { 0x00, 0x00, 0x00, 0x7f, 0x7f, 0x7f, 0xff, 0xff, 0xff }; unsigned short pmd85_colortable[1][3] ={ { 0, 1, 2 } }; PALETTE_INIT( pmd85 ) { palette_set_colors_rgb(machine, 0, pmd85_palette, sizeof(pmd85_palette) / 3); memcpy(colortable, pmd85_colortable, sizeof (pmd85_colortable)); } VIDEO_START( pmd85 ) { } static void pmd85_draw_scanline(mame_bitmap *bitmap, int pmd85_scanline) { int x, i; int pen0, pen1; UINT8 data; /* set up scanline */ UINT16 *scanline = BITMAP_ADDR16(bitmap, pmd85_scanline, 0); /* address of current line in PMD-85 video memory */ UINT8* pmd85_video_ram_line = mess_ram + 0xc000 + 0x40*pmd85_scanline; for (x=0; x<288; x+=6) { data = pmd85_video_ram_line[x/6]; pen0 = 0; pen1 = data & 0x80 ? 1 : 2; for (i=0; i<6; i++) scanline[x+i] = Machine->pens[(data & (0x01<