trunk/src/mame/drivers/senjyo.c
| r19237 | r19238 | |
| 7 | 7 | TODO: |
| 8 | 8 | - wrong background colors in baluba, intermissions after round 13 (btanb or |
| 9 | 9 | fixed at some point) |
| 10 | - Star Force: the Larios is supposed to blink at the third loop of the BGM. |
| 11 | Right now it does at second and half, presumably due of the unknown PCB clocks. |
| 10 | 12 | |
| 13 | Note: |
| 14 | - Star Force shows default MAME palette at POST. Putted it all_black for now. |
| 11 | 15 | |
| 12 | 16 | This board was obviously born to run Senjyo. Four scrolling layers, gradient |
| 13 | 17 | background, sprite/background priorities, and even a small bitmap for the |
| r19237 | r19238 | |
| 181 | 185 | /* are scroll registers 1+2 linked on the bootleg?, only one copy is written */ |
| 182 | 186 | WRITE8_MEMBER(senjyo_state::starforb_scrolly2) |
| 183 | 187 | { |
| 184 | | |
| 185 | 188 | m_scrolly2[offset] = data; |
| 186 | 189 | m_scrolly1[offset] = data; |
| 187 | 190 | } |
| 188 | 191 | |
| 189 | 192 | WRITE8_MEMBER(senjyo_state::starforb_scrollx2) |
| 190 | 193 | { |
| 191 | | |
| 192 | 194 | m_scrollx2[offset] = data; |
| 193 | 195 | m_scrollx1[offset] = data; |
| 194 | 196 | } |
| r19237 | r19238 | |
| 592 | 594 | |
| 593 | 595 | MCFG_GFXDECODE(senjyo) |
| 594 | 596 | MCFG_PALETTE_LENGTH(512+2) /* 512 real palette + 2 for the radar */ |
| 597 | MCFG_PALETTE_INIT(all_black) |
| 595 | 598 | |
| 596 | | |
| 597 | 599 | /* sound hardware */ |
| 598 | 600 | MCFG_SPEAKER_STANDARD_MONO("mono") |
| 599 | 601 | |