trunk/src/mame/layout/konamigt.lay
r0 | r26728 | |
| 1 | <?xml version="1.0"?> |
| 2 | <mamelayout version="2"> |
| 3 | <element name="shifter" defstate="0"> |
| 4 | <rect> |
| 5 | <bounds left="0" right="32" top="0" bottom="64" /> |
| 6 | <color red="0.85" green="0.4" blue="0.3" /> |
| 7 | </rect> |
| 8 | <rect> |
| 9 | <bounds left="2" right="30" top="2" bottom="62" /> |
| 10 | <color red="0.14" green="0.17" blue="0.2" /> |
| 11 | </rect> |
| 12 | <rect> |
| 13 | <bounds left="14" right="18" top="15" bottom="49" /> |
| 14 | <color red="0.44" green="0.47" blue="0.5" /> |
| 15 | </rect> |
| 16 | <disk> |
| 17 | <bounds left="14" right="18" top="13" bottom="17" /> |
| 18 | <color red="0.44" green="0.47" blue="0.5" /> |
| 19 | </disk> |
| 20 | <disk> |
| 21 | <bounds left="14" right="18" top="47" bottom="51" /> |
| 22 | <color red="0.44" green="0.47" blue="0.5" /> |
| 23 | </disk> |
| 24 | <text string="LOW" state="0"> |
| 25 | <bounds left="3" right="29" top="2" bottom="12" /> |
| 26 | <color red="1.0" green="1.0" blue="0.4" /> |
| 27 | </text> |
| 28 | <text string="LOW" state="1"> |
| 29 | <bounds left="3" right="29" top="2" bottom="12" /> |
| 30 | <color red="1.0" green="1.0" blue="1.0" /> |
| 31 | </text> |
| 32 | |
| 33 | <text string="HIGH" state="0"> |
| 34 | <bounds left="3" right="29" top="52" bottom="62" /> |
| 35 | <color red="1.0" green="1.0" blue="1.0" /> |
| 36 | </text> |
| 37 | <text string="HIGH" state="1"> |
| 38 | <bounds left="3" right="29" top="52" bottom="62" /> |
| 39 | <color red="1.0" green="1.0" blue="0.4" /> |
| 40 | </text> |
| 41 | <disk state="0"> |
| 42 | <bounds left="9" right="23" top="14" bottom="28" /> |
| 43 | <color red="0.85" green="0.4" blue="0.3" /> |
| 44 | </disk> |
| 45 | <disk state="1"> |
| 46 | <bounds left="9" right="23" top="36" bottom="50" /> |
| 47 | <color red="0.85" green="0.4" blue="0.3" /> |
| 48 | </disk> |
| 49 | </element> |
| 50 | |
| 51 | <view name="Shifter-R"> |
| 52 | <screen index="0"> |
| 53 | <bounds x="0" y="0" width="480" height="640" /> |
| 54 | </screen> |
| 55 | <bezel element="shifter" inputtag="IN1" inputmask="0x10"> |
| 56 | <bounds x="446" y="574" width="32" height="64" /> |
| 57 | <color alpha="0.6" /> |
| 58 | </bezel> |
| 59 | </view> |
| 60 | <view name="Shifter-L"> |
| 61 | <screen index="0"> |
| 62 | <bounds x="0" y="0" width="480" height="640" /> |
| 63 | </screen> |
| 64 | <bezel element="shifter" inputtag="IN1" inputmask="0x10"> |
| 65 | <bounds x="2" y="574" width="32" height="64" /> |
| 66 | <color alpha="0.6" /> |
| 67 | </bezel> |
| 68 | </view> |
| 69 | </mamelayout> |
trunk/src/mame/drivers/nemesis.c
r26727 | r26728 | |
56 | 56 | #include "includes/nemesis.h" |
57 | 57 | #include "includes/konamipt.h" |
58 | 58 | |
| 59 | #include "konamigt.lh" |
59 | 60 | |
| 61 | |
60 | 62 | INTERRUPT_GEN_MEMBER(nemesis_state::nemesis_interrupt) |
61 | 63 | { |
62 | 64 | if (m_irq_on) |
r26727 | r26728 | |
2327 | 2329 | |
2328 | 2330 | GAME( 1985, nemesis, 0, nemesis, nemesis, driver_device, 0, ROT0, "Konami", "Nemesis (ROM version)", GAME_SUPPORTS_SAVE ) |
2329 | 2331 | GAME( 1985, nemesisuk, nemesis, nemesis, nemesuk, driver_device, 0, ROT0, "Konami", "Nemesis (World?, ROM version)", GAME_SUPPORTS_SAVE ) |
2330 | | GAME( 1985, konamigt, 0, konamigt, konamigt, driver_device, 0, ROT0, "Konami", "Konami GT", GAME_SUPPORTS_SAVE ) |
| 2332 | GAMEL(1985, konamigt, 0, konamigt, konamigt, driver_device, 0, ROT0, "Konami", "Konami GT", GAME_SUPPORTS_SAVE, layout_konamigt ) |
2331 | 2333 | GAME( 1985, rf2, konamigt, rf2_gx400, rf2, driver_device, 0, ROT0, "Konami", "Konami RF2 - Red Fighter", GAME_SUPPORTS_SAVE ) |
2332 | 2334 | GAME( 1985, twinbee, 0, gx400, twinbee, driver_device, 0, ROT90, "Konami", "TwinBee (ROM version)", GAME_SUPPORTS_SAVE ) |
2333 | 2335 | GAME( 1985, gradius, nemesis, gx400, gradius, driver_device, 0, ROT0, "Konami", "Gradius (Japan, ROM version)", GAME_SUPPORTS_SAVE ) |