trunk/src/mame/drivers/twins.c
| r245295 | r245296 | |
| 52 | 52 | |
| 53 | 53 | Twins (set 2) is significantly changed hardware, uses a regular RAMDAC hookup for plaette etc. |
| 54 | 54 | |
| 55 | To access Service Mode in Spider you must boot with P1 Left and P1 Right held down, |
| 56 | this requires the -joystick_contradictory switch on the commandline. |
| 55 | 57 | |
| 58 | |
| 56 | 59 | */ |
| 57 | 60 | |
| 58 | 61 | #include "emu.h" |
| r245295 | r245296 | |
| 506 | 509 | |
| 507 | 510 | // game is only animating sprites at 30fps, maybe there's some double buffering too? |
| 508 | 511 | |
| 512 | // data written is always 00, only seems to want the upper layer to be cleared |
| 513 | // otherwise you get garbage sprites between rounds and the bg incorrectly wiped |
| 514 | |
| 509 | 515 | UINT16* vram; |
| 510 | | if (m_videorambank & 1) |
| 516 | // if (m_videorambank & 1) |
| 511 | 517 | vram = m_videoram2; |
| 512 | | else |
| 513 | | vram = m_videoram; |
| 518 | // else |
| 519 | // vram = m_videoram; |
| 514 | 520 | |
| 515 | 521 | for (int i = 0; i < 0x8000; i++) |
| 516 | 522 | { |