trunk/src/mame/drivers/stuntair.c
| r22901 | r22902 | |
| 1 | 1 | /* |
| 2 | 2 | |
| 3 | Stunt Air by Nuova Videotron 1983 |
| 3 | 4 | |
| 5 | driver todo: (SOME OF THIS WILL NEED PCB REFERENCES / MEASUREMENTS) |
| 4 | 6 | |
| 5 | | Stunt Air - is this a bootleg of something? (it's not Star Jacker / Star Force) |
| 6 | 7 | |
| 7 | | Stunt Air by Nuova Videotron 1983 |
| 8 | - correct colour PROM decoding (resistor values?) |
| 9 | - correct FG colour handling (currently use a hardcoded white) |
| 10 | - correct sound (need interrupt frequencies at least) |
| 11 | - correct remaining GFX / sprite issues (flicker sometimes, might need better vblank timing?) |
| 12 | - clean up input ports (identify unknown dips, unused ports) |
| 13 | - clean up driver |
| 8 | 14 | |
| 9 | | Finally i've found this one,too.This romset comes from a rare italian pcb. |
| 10 | 15 | |
| 11 | 16 | Hardware info (complete): |
| 12 | 17 | Main cpu Z80A |
| 13 | 18 | Sound cpu Z80A |
| 14 | 19 | Sound ic AY-3-8910 x2 |
| 15 | 20 | Note: stereo sound output.Op amps LM3900 x3, audio amps TDA2002 x2, many discrete components |
| 21 | |
| 16 | 22 | Osc: 18.432 Mhz |
| 23 | |
| 17 | 24 | Ram: |
| 18 | 25 | Work 2kb (6116) |
| 19 | 26 | Sound 1kb (2114 x2) |
| r22901 | r22902 | |
| 30 | 37 | stuntair.a11,a12 background gfx |
| 31 | 38 | stuntair.a13,a15 obj/sprites gfx |
| 32 | 39 | 82s123.a7 (removing it results in garbage boot screen with high score table music) |
| 40 | |
| 33 | 41 | -bottom pcb- |
| 34 | 42 | 82s129.l11 green,blue colors |
| 35 | 43 | 82s129.m11 red color |
| r22901 | r22902 | |
| 606 | 614 | ROM_END |
| 607 | 615 | |
| 608 | 616 | |
| 609 | | GAME( 1983, stuntair, 0, stuntair, stuntair, driver_device, 0, ROT90, "Nuova Videotron", "Stunt Air", GAME_NO_SOUND | GAME_NOT_WORKING ) |
| 617 | GAME( 1983, stuntair, 0, stuntair, stuntair, driver_device, 0, ROT90, "Nuova Videotron", "Stunt Air", GAME_IMPERFECT_COLORS | GAME_IMPERFECT_GRAPHICS | GAME_IMPERFECT_SOUND ) |