Previous 199869 Revisions Next

r18006 Wednesday 19th September, 2012 at 00:17:41 UTC by Barry Rodewald
(MESS) Fixed 256 colour SVGA modes when used by the gfxultra. (no whatsnew)
[src/emu/video]pc_vga.c

trunk/src/emu/video/pc_vga.c
r18005r18006
621621   int yi;
622622   int xi;
623623   UINT8 start_shift;
624   UINT16 line_length;
624625
625626   /* line compare is screen sensitive */
626627   mask_comp = 0x3ff;
627628   curr_addr = 0;
628629
630   if(vga.crtc.dw)
631      line_length = vga.crtc.offset << 3;  // doubleword mode
632   else
633   {
634      line_length = vga.crtc.offset << 4;
635   }
636
629637   start_shift = (!(vga.sequencer.data[4] & 0x08)) ? 2 : 0;
630638
631639   {
632      for (addr = VGA_START_ADDRESS << start_shift, line=0; line<LINES; line+=height, addr+=VGA_LINE_LENGTH, curr_addr+=VGA_LINE_LENGTH)
640      for (addr = VGA_START_ADDRESS << start_shift, line=0; line<LINES; line+=height, addr+=line_length, curr_addr+=line_length)
633641      {
634642         for(yi = 0;yi < height; yi++)
635643         {
r18005r18006
12141222         printf("Unhandled CRTC reg r %02x\n",index);
12151223         break;
12161224   }
1217
12181225   return res;
12191226}
12201227

Previous 199869 Revisions Next


© 1997-2024 The MAME Team