Previous 199869 Revisions Next

r33666 Thursday 4th December, 2014 at 02:47:53 UTC by Scott Stone
(MESS) maria.c:  Implemented "colorburst kill" bit of the MARIA CTRL register.  [Mike Saarna, Robert Tuccitto]
[src/mess/video]maria.c

trunk/src/mess/video/maria.c
r242177r242178
44
55
66  - some history:
7    2014-12-01 Mike Saarna, Robert Tuccitto Implemented "colorburst kill" bit
8               of the MARIA CTRL register.
79    2014-10-05 Mike Saarna, Robert Tuccitto Last Line DMA value corrected
810                to 6. GCC and Atari docs both show a difference between
911                Other Line and Last Line as +6 at the lowest part of the
r242177r242178
317319            scanline[2 * i + 1] = m_maria_palette[d];
318320            break;
319321      }
322
323      if(m_color_kill) //remove color if there's no colorburst signal
324      {
325            scanline[2 * i] &= 0x0f;
326            scanline[2 * i + 1] &= 0x0f;
327      }
320328   }
321329
322330   for (int i = 0; i < 160; i++) // buffer automaticaly cleared once displayed


Previous 199869 Revisions Next


© 1997-2024 The MAME Team